*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
/*CSS FOR MOBILE*/
header{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 15vh;
    background-color: #fffd82;
    text-align: center;
}

.nav-bar ul{
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo{
    font-family: 'Bebas Neue', cursive;
    color: #ed217c;
    font-size: 40px;
    text-shadow: 2px 2px #2d3047;
}

.nav-bar li{
    padding: 0 10vw;
    font-family: 'Roboto', sans-serif;
}

.nav-bar ul a{
    text-decoration: none;
    color: #2d3047;
    font-weight: bold;
    font-size: 18px;
}

.gallery img{
    max-width: 100%;
    border-radius: 15px;
}

.gallery{
    columns: 2 40vw;
    column-gap: 1em;
    padding: 2vh 3vw;
    background-color: #fffec2;
}

.register-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #2d3047;
    border-radius: 5%;
    padding: 5vh 5vw 5vh 5vw;
    width: 80%;
    color: white;
}

.register{
    padding-top: 7%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #11121a;
    height: 100%;
    width: 100%;
    background-color: #fffec2;
}

.register-box{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.register-box li{
    display: flex;
    width: 100%;
}

.register h3{
    font-size: 30px;
    font-family: 'Roboto',sans-serif;
    padding-bottom: 2vh;
}

.register p{
    margin: 5px;
    font-size: 18px;
    font-family: 'Roboto',sans-serif;
}

.register input{
    padding: .5vh 0;
    text-align: center;
    border-radius: 5px;
    width: 100%;
    background-color: #3a3b3f;
}

.bttn-register{
    font-family: 'Roboto',sans-serif;
    margin-top: 1vh;
    padding: 5px;
    border-radius: 5px;
    background-color: #3a3b3f;
    color: white;
    font-weight: bold;
    font-size: 15px;
}

.register-box table{
    width: 100%;
}

/*CSS FOR PC*/
@media (min-width:720px){
    header{
        display: flex;
        align-items: center;
        flex-direction: row;
        justify-content: space-between;
        padding: 0 3vw;
        width: 100%;
        height: 10vh;
        background-color: #fffd82;
    }
    
    .nav-bar ul{
        list-style: none;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .nav-bar li{
        padding: 0 2vw;
        font-family: 'Roboto', sans-serif;
    }
    
    .nav-bar li:hover{
        transform: scale(1.2);
        transition: 0.2s;
    }
    
    .nav-bar ul a{
        text-decoration: none;
        color: #2d3047;
        font-weight: bold;
        font-size: 18px;
    }
    
    .gallery img{
        max-width: 100%;
        border-radius: 15px;
    }
    
    .gallery img:hover{
        cursor: pointer;
        filter:brightness(70%);
        transition: 0.3s;
    }
    
    .gallery{
        columns: 6 10vw;
        column-gap: 0.5em;
        padding: 2vh 1vw;
        background-color: #fffec2;
    }

    .logo:hover{
        animation: logo-anim .8s;
        cursor: pointer;
    }
    
    @keyframes logo-anim{
        0%{
            transform: rotate(10deg);
        }
        25%{
            transform: rotate(5deg);
        }
        50%{
            transform: rotate(0);
            transform: scale(1.2);
        }
        75%{
            transform: rotate(-10deg);
        }
        100%{
            transform: rotate(5deg);
        }
    }


    .register-container{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        border-radius: 5%;
        padding: 5vh 5vw 5vh 5vw;
        width: 35%;
    }

    .register{
        display: flex;
        align-items: center;
        justify-content: center;
        color: #11121a;
        height: 100%;
        width: 100%;
    }

    .register-box{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .register-box li{
        display: flex;
        width: 100%;
    }

    .register h3{
        font-size: 30px;
        font-family: 'Roboto',sans-serif;
        padding-bottom: 5vh;
    }

    .register p{
        margin: 5px;
        font-size: 18px;
        font-family: 'Roboto',sans-serif;
    }

    .register input{
        padding: .5vh 0;
        text-align: center;
        border-radius: 5px;
        width: 100%;
    }

    .bttn-register{
        font-family: 'Roboto',sans-serif;
        margin-top: 1vh;
        padding: 5px;
        border-radius: 5px;
    }

    .register-box table{
        width: 80%;
    }
}

