*{
    padding: 0%;
    margin: 0%;
    color: whitesmoke;
}
html,body{
    background-image: url(https://p4.wallpaperbetter.com/wallpaper/468/838/392/4k-artistic-5k-colors-wallpaper-preview.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-clip: content-box;
    background-attachment: fixed;
    background-position: center;
}
#nav{
    background-color: black;
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    color: whitesmoke;
}
#nav-c{
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    color: whitesmoke;
    justify-content: center;
}
#clock_date{
    margin: 0px 4vw;
}
#logo{
    height: 50px;
    width: 50px;
    border-radius: 50px;
}
section{
    padding: 10px;
    margin: 10px;
}
#game1{
    width: 125px;
    height: 215px;
    margin: 0 auto;
    border-radius: 20px;
    background-color: rgb(0, 0, 0);
    animation-iteration-count:infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}
#game1:hover{
    animation-name: boxani;
    animation-duration: 0.1s;
}
#screen{
    width: 90%;
    height: 90%;
    border-radius: 20px;
    background-color: rgb(24, 24, 24);
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
}
#googleee{
    width: 80px;
    height: 40px;
}
@keyframes boxani {
    0%{
        transform: rotate(5deg);
    }
    50%{
        transform: rotate(-5deg);
    }
    100%{
        transform: rotate(5deg);
    }
}
