@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@700&family=Montserrat:wght@700&family=Poppins&family=Quicksand:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bangers&display=swap');

body{
    padding: 0;
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgb(112, 9, 121) 35%, rgb(58, 0, 85) 100%);
}

#banner{
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
    box-sizing: border-box;
}
#banner a{
    text-decoration: none;
}
#banner #logo{
    width: 30%;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
#banner #logo img{
    width: auto;
    height: 100%;
    border-radius: 50%;
}
#banner ul{
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 25px;
}
#banner ul li{
    font-size: .9rem;
    font-weight: 500;
    color: #fff;
    cursor: pointer;
    transition: .3s;
    white-space: nowrap;
    padding: 10px 30px;
    border-radius: 8px;
    position: relative;
}
#banner ul li::before{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    border-radius: 8px;
    background: linear-gradient(60deg, rgb(255, 83, 83), rgb(22, 22, 22) 100px);
    opacity: .5;
    z-index: -1;
    transition: .3s;
}
#banner ul li:hover{
    color: #f1f1f1;
    transform: scale(1.1);
}
#banner ul li:hover::before{
    opacity: 1;
}

#burger_menu{
    width: 40px;
    height: 25px;
    display: none;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    position: absolute;
    right: 50px;
    z-index: 999;
}
#burger_menu .burger_line{
    width: 100%;
    height: 3px;
    background: #fff;
    border-radius: 5px;
    transition: all .4s;
}
#burger_menu_conent{
    width: 100%;
    height: auto;
    padding: 50px 0;
    background: #000;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 998;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transform: translatey(-100%);
    transition: all .4s;
}
#burger_menu_conent ul{
    width: 100%;
    list-style: none;
    display: flex !important;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 25px;;
    padding: 0;
    margin-top: 40px;
}
#burger_menu_conent ul li{
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    background: rgb(32, 32, 32);
    cursor: pointer;
    transition: .3s;
    white-space: nowrap;
    width: 200px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
}
#burger_menu_conent ul li:hover{
    color: #f1f1f1;
    transform: scale(1.05);
    box-shadow: 5px 5px 10px rgba(255, 255, 255, 0.5);
}
#landing{
    width: 100%;
    height: 30vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #eeeeee;
    padding-top: 30px;
}
#landing h1, #landing h2{
    font-family: 'Bangers', cursive;
    font-size: 5rem;
    text-align: center;
    padding: 0;
    margin: 0;
    letter-spacing: 2px;
}
#landing h2{
    font-size: 2rem;
    font-family: 'Quicksand', sans-serif;
    text-align: center;
}
#container{
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 10px;
    flex-wrap: wrap;
}
.item{
    flex: calc(50% - 20px);
    min-height: 250px;
    min-width: 400px;
    background-color: #f1f1f1;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    position: relative;
    padding: 10px;
    box-sizing: border-box;
}
.item:nth-child(1){
    flex-direction: row;
}
.item:hover{
    transform: scale(1.01);
    box-shadow: 5px 5px 10px rgba(255, 255, 255, 0.5);
}
.item h2{
    font-family: 'Fredoka', cursive;
    font-size: 2rem;
    text-align: center;
    padding: 0;
    margin: 0;
    letter-spacing: 1px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}
#left{
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
#left h3{
    font-family: 'Bangers', cursive;
    font-size: 1.5rem;
    text-align: center;
    padding: 10px;
    margin: 0;
    letter-spacing: 2px;
}
#right{
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
#right h3{
    font-family: 'Bangers', cursive;
    font-size: 1.5rem;
    text-align: center;
    padding: 10px;
    margin: 0;
    letter-spacing: 2px;
}
.item ul{
    padding: 0;
    margin: 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.item:nth-child(2){
    align-items: flex-start;
}
.item:nth-child(2) ul{
    margin-left: 15px;
}
@media screen and (max-width: 1024px){
    #burger_menu{
        display: flex;
    }
    #banner ul{
        display: none;
    }
}
@media screen and (max-width: 650px){
    .item{
        min-width: 280px;
    }
    .item h2{
        font-size: 2rem;
        width: 100%;
        white-space: wrap;
    }
    .item:nth-child(1){
        padding-top: 50px;
        flex-direction: column;
        gap: 30px;
    }
    .item:nth-child(2){
        padding-top: 30px;
    }
    #landing h1, #landing h2{
        font-size: 3rem;
    }
    #landing h2{
        font-size: 1.5rem;
    }
    #landing{
        padding-top: 50px;
    }
}