* {
    box-sizing: border-box;
}
#portfolio-home {
    background-color: #f7f5f2;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    padding: 10px 15px;
    position: fixed;
    bottom: 5px;
    z-index: 999;
    border-radius: 5px;
    margin-left: 10px;
    color: #ff6600;
    text-decoration: none;
    font-weight: 600;
    font-size: medium;
    border: #ff6600 solid 2px;
    width: 150px;
}
#portfolio-home:hover {
    background-color: #ff2600;
}
/* stock classes */
html {
    background-color: black;
    
}
body {
    margin: 0;
    font-family: "unibody-8-new", sans-serif;
    -weight: 900;
    font-style: normal;
    overflow-y: hidden;
}
h1 {
    color: white;
}
a {
    margin: 10px 0;
    display: block;
    text-align: center;
    width: 100%;
    padding: 10px 50px;
    background-color: white;
    text-decoration: none;
    font-size: x-large;
    color: black;
    letter-spacing: -1px;
}
a:hover {
    background-color: gray;
    pointer-events: all;
}
a:active {
    background-color: red;
}
footer {
    color: white;
}
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    color: white;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 80px;
}
#control-illustration {
    display: none;
    position: absolute;
    margin-right: 230px;
    margin-top: -230px;
    width: 728px;
}
#tv-container {
    /* display: none; */
    width: 1338px;
    height: 824px;
    top: 0;
    left: 0;
    z-index: 2;
    pointer-events: none;
}
#tv {
    top: 0;
    left: 0;
    height: 100%;
    background-image: url(img/tv.png);
    background-repeat: no-repeat;

}
#everything{
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 852px;
    overflow: hidden;
}
#extras{
    display: none;
    position: absolute;
    width: 728px;
    height: 520px;
    margin-right: 230px;
    margin-top: -230px;
    overflow: scroll;
}
#audio-toggle{
    position: relative;
    display: flex;
    justify-content: center;
    width: 100px;
    height: 100px;
    top:  -643px;
    left: 1066px;
    border-radius: 50px;
    padding: 12px 17px;
    pointer-events: auto;
}#home-button{
    position: relative;
    display: flex;
    justify-content: center;
    width: 100px;
    height: 100px;
    top:  -680px;
    left: 1066px;
    border-radius: 50px;
    padding: 12px 17px;
    pointer-events: auto;
}
h4{
    margin: 0;
}
/* crt effect */
#content {
    padding: 1em;
    color: #eee;
    font-size: 1em;
    line-height: 1;
    text-shadow: 0.06rem 0 0.06rem #ea36af, -0.125rem 0 0.06rem #75fa69;
    letter-spacing: 0.125em;
    animation-duration: 0.2s;
    animation-name: textflicker;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    position: absolute;
    margin-right: 230px;
    width: 760px;
}
#content a {
    box-shadow: 0.06rem 0 0.06rem #ea36af, -0.125rem 0 0.06rem #75fa69;
    animation-duration: 0.01s;
    animation-name: boxflicker;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

/* crt flicker animation */
@keyframes textflicker {
    from {
        text-shadow: 1px 0 0 #ea36af, -2px 0 0 #75fa69;
    }

    to {
        text-shadow: 2px 0.5px 2px #ea36af, -1px -0.5px 2px #75fa69;
    }
}

@keyframes boxflicker {
    from {
        box-shadow: 1px 0 0 #ea36af, -2px 0 0 #75fa69;
    }

    to {
        box-shadow: 2px 0.5px 2px #ea36af, -1px -0.5px 2px #75fa69;
    }
}

