@import url('https://fonts.googleapis.com/css?family=Ubuntu:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css?family=Comfortaa:wght@500&display=swap');
body{
    margin: 0;
    padding: 0;
    background: #eee;
    font-family: 'Comfortaa', cursive;
    display: flex;
    flex-direction: column;
    align-items: center;
}nav{
    display: flex;
    width: 100%;
    height: 55px;
    padding: 0;
    margin: 0;
    justify-content: space-between;
    align-items: center;
    background: #BE2403;
    border-bottom: 3px solid #fff;
}#logo{
    display: flex;
    align-items: center;
    margin-left: 15px;
    text-decoration: none;
}#logo img{
    width: 35px;
    height: 35px;
    margin-right: 5px;
}#logo h2{
    margin-left: 3px;
    color: #fff;
    font-family: 'Ubuntu', sans-serif;
    font-size: 32px;
}.menu{
    margin-right: 9px;
    align-items: center;
    display: flex;
    flex-wrap: wrap;
}.menu a{
    text-decoration: none;
}
#profile{
    font-size: 27px;
    color: #fff;
    margin-left: 5px;
    transition: 0.7s;
}
#profile:hover{
    color: rgb(192, 192, 192);
}
#btn1{
    padding: 8px 15px;
    outline: none;
    background: transparent;
    border: 2px solid #fff;
    border-radius: 7px;
    color: #fff;
    margin-right: 2px;
    transition: 0.7s;
    display: flex;
}
#btn1:hover{
    background: #fff;
    color: red;
}
#btn2{
    padding: 8px 15px;
    outline: none;
    background: #fff;
    border: 2px solid #fff;
    border-radius: 7px;
    color: rgb(241, 9, 9);
    margin-left: 3px;
    margin-right: 5px;
    transition: 0.7s;
}#btn2:hover{
    background: transparent;
    color: #fff;
}
.container{
    background: #fff;
    padding: 5px;
    border-radius: 3px;
    width: 90%;
    height: max-content;
    margin: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.container #head{
    background: linear-gradient(50deg,rgb(7, 172, 172),rgb(2, 105, 105));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 23px;
    text-align: center;
    margin: 15px;
}
.container p{
    width: 90%;
    color: rgb(70, 70, 70);
    margin: 5px;
}
.pre{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 5px;
    margin-bottom: 15px;
}
.pre a{
    text-decoration: none;
    background: #fff;
    border: 2px solid rgb(13, 159, 243);
    height: 215px;
    width: 195px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 5px;
    margin: 7px;
    box-shadow: 3px 3px 10px rgb(143, 143, 143);
}
.pre a img{
    width: 150px;
    height: 150px;
    border-radius: 5px;
}
.pre a p{
    text-align: center;
    margin: 5px;
    font-size: 15px;
}
#order{
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    padding: 8px;
    background: linear-gradient(50deg,rgb(0, 102, 255),rgb(0, 153, 255));
    color: #fff;
    border-radius: 8px;
}#order p{
    color: #fff;
}

@media(max-width:650px){
    #logo h2{
        font-size: 23px;
    }
    #btn1{
        display: none;
    }
    .container #head{
        font-size: 18px;
    }
}