@font-face{
    font-family: "Sono";
    src:
        local("Sono"),
        url("../fonts/Sono-Regular.woff2") format("woff2");
}

#one{
    display:flex;
    width: 100%;
    align-items: stretch;
    gap: 1em;

    @media screen and (width <= 800px){
        flex-direction: column;  
    }
}

#one > div{
    flex: 1 50vw;
}

#poster > img{
    width:100%;
    height:100%;
}

body{
    font-family: 'Sono', Courier, monospace;
    background: fixed url("../7g/background.png");
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
}


p{
    font-size: 1.9em;
    line-height: 1em;
    letter-spacing: -0.1em;
}


#title{
    text-align: center;
    margin: 1.1em;
}

#title > img{
    max-width: 100%;
    height: 20vh;
}

#title:hover{
    animation: shake 0.5s infinite;
}

#title:hover::before{
    background: url(../7g/lightning.gif);
    position: absolute;
    height: 100%;
    width: 100%;
    content: "helo";
    background-size: contain;
    color: #fff0;
}

#apps{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.app{
    flex: 0 15%;
    width: 15%;
}

.app > img{
    width:100%;
}

#dock{
    background-image: url(../7g/dock.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position-y: bottom;
    padding:1em;
    display: flex;
}

ul{
    list-style: url("../7g/wifi.svg");
}

li{
    font-size: 1.9em;
    line-height: 1em;
    letter-spacing: -0.1em;
}

#fish{
    display:none;
    z-index:999;
    @media screen and (width <= 800px){
        display:none;  
    }
}

@keyframes shake {
    0%{
        transform:translate(0,0);
    }
    20%{
        transform:translate(5px,0);
    }
    40%{
        transform:translate(0,-5px);
    }
    60%{
        transform:translate(-5px,0);
    }
    80%{
        transform:translate(0,-5px);
    }
    100%{
        transform:translate(-5px,-5px);
    }
}