::-webkit-scrollbar{
    display: none;
}
body{
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}
nav{
    width: 100%;
    background: red;
    display: flex;
    align-items: center;
    padding: 0;
    height: 65px;
    justify-content: space-between;
}
nav #logo{
    padding: 0;
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-left: 9px;
    user-select: none;
}
nav #logo img{
    width: 42px;
    height: 42px;
    border-radius: 4px;
    margin-right: 3px;
}
nav #logo h2{
    margin-left: 3px;
    color: #fff;
    font-size: 32px;
    padding: 0;
    background: linear-gradient(90deg,#fff,#ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
nav .menu{
    display: flex;
    align-items: center;
    margin-right: 15px;
}
nav .menu a{
    text-decoration: none;
    margin-right: 23px;
    color: #fff;
    font-size: 19px;
    transition: 0.5s;
    display: flex;
    flex-direction: column;
    align-items: center;
    user-select: none;
}
nav .menu a:hover{
    color: #ffd700;
}
nav .menu a i{
    display: none;
}
.container{
    width: 97%;
    border-radius: 5px;
    margin: 5px;
    height: max-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5px;
    background: #eee;
}
.container h2{
    padding: 0;
    margin: 3px;
    color: red;
}
.container #box{
    width: 100%;
    height: max-content;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.container #box .item{
    width: max-content;
    background: #fff;
    display: flex;
    flex-wrap: wrap;
    box-shadow: 3px 3px 6px rgb(170, 170, 170);
    margin: 5px;
}
.container #box .item embed{
    height: 232px;
    width: 383px;
}
.container #box .item .content{
    padding: 8px;
    width: 300px;
}
.container #box .item img{
    width: 300px;
    height: fit-content;
}
.container #box .item .content h3{
    color: teal;
    font-size: 23px;
    margin: 5px;
    padding: 0;
}
.container #box .item .content p{
    color: rgb(68, 68, 68);
    font-size: 19px;
    padding: 0;
    margin: 0;
}
.container #box .item .content a{
    text-decoration: none;
    padding: 8px;
    background: royalblue;
    color: #fff;
    border-radius: 5px;
    font-size: 23px;
}
.foot{
    width: 100%;
    height: max-content;
    background: rgb(207, 0, 0);
    padding: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.foot .links{
    width: 80%;
    height: max-content;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.foot .links a{
    color: #fff;
    text-decoration: none;
    margin: 9px;
    padding: 0;
    transition: 0.5s;
    user-select: none;
}
.foot .links a:hover{
    color: rgb(185, 185, 185);
}
.foot .logo{
    width: max-content;
    height: max-content;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
    border-top: 1px solid #eee;
    padding: 5px;
}
.foot .logo img{
    width: 42px;
    height: 42px;
    margin-right: 5px;
    border-radius: 4px;
    user-select: none;
}
.foot .logo h2{
    color: #fff;
    padding: 0;
    font-size: 19px;
    margin-left: 3px;
    user-select: none;
}
.foot .logo h2 span{
    font-size: 15px;
    margin-left: 3px;
    color: #ffd700;

}

@media(max-width:666px){
    body{
        padding-bottom: 50px;
    }
    nav{
        height: 50px;
    }
    nav #logo img{
        height: 32px;
        width: 32px;
    }
    nav #logo h2{
        font-size: 23px;
    }
    nav .menu{
        position: fixed;
        width: 100%;
        display: flex;
        justify-content: center;
        background: red;
        bottom: 0;
        justify-content: space-around;
        padding: 8px;
        border-top: 2px solid #eee;
    }
    nav .menu a i{
        display: block;
    }
    .container #box .item{
        width: 100%;
        border-radius: 5px;
    }
    .container #box .item embed{
        width: 100%;
        height: 291px;
    }
    .container #box .item .content{
        width: 100%;
        padding: 9px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .container #box .item .content h3{
        font-size: 19px;
    }
    .container #box .item .content p,span{
        font-size: 15px;
    }
    .container #box .item .content a{
        height: 23px;
        width: 75%;
        font-size: 16px;
        text-align: center;
    }
    .container #box .item img{
        width: 90%;
    }
    .foot .logo img{
        width: 36px;
        height: 36px;
    }
    .foot .logo h2{
        font-size: 15px;
    }
    .foot .logo h2 span{
        font-size: 12px;
    }
}