* {
    padding: 0;
    margin: 0;
}

body {

    width: 100%;
    height: 100vh;

}

@font-face {
    font-family: "Ajou";
    src: url(AjouTTF.ttf)

}

@font-face {
    font-family: "Canela2";
    src: url(canela_bold.otf)
}

@font-face {
    font-family: "Iropke";
    src: url(IropkeBatangM.otf)
}


.box {

    width: fit-content;
    height: 100vh;
    background-color: rgb(255, 255, 255);
    position: absolute;
    text-align: left;
    z-index: 1;
    opacity: 0;
    left: -500px;
    pointer-events: none;
    transition: 0.3s;

}


.active.box {
    opacity: 1;
    left: 0px;
    pointer-events: visible;
}


.menu_icon_box {

    z-index: 2;
    width: fit-content;
    height: auto;
    background-color: white;
    margin: 30px;
    position: absolute;
    border-radius: 4px;
    cursor: pointer;
    
}

.line1, .line2, .line3 {
    width: 20px;
    height: 2px;
    margin: 3px 2px;
    background-color: black;
    border-radius: 30px;
}

.active .line1 {
    transform: translate(0px, 5px)rotate(45deg);
}
.active .line2 {
    opacity: 0;
}
.active .line3 {
    transform: translate(0px, -5px)rotate(-45deg);
}

nav {
    padding-top: 100px;
}

nav ul {
    margin: 0px 30px;
}

nav ul li {
    list-style: none;
    margin-bottom: 30px;
    transition: 0.3s;
}

nav ul li:hover {
    background-color: antiquewhite;
    border-radius: 8px;
}

nav ul li a {
    color: black;
    padding: 10px 20px;
    display: block;
    
}

.box-text {

    font-family: "Ajou";
    font-size: 1.7vmax;
    letter-spacing: -0.5px;

}


h1 {

    padding-top: 3cqh;
    width: 100%;
    text-align: center;
    justify-content: center;
    word-spacing: normal;
    font-family: "Canela", "Canela2";
    font-size: 3vmax;

} 


h2 {

    text-align: center;
    justify-content: center;
    word-spacing: normal;
    font-family: "Iropke";
    position: absolute;
    width: 100%;
    margin-top: 35vh;
    letter-spacing: -2.97px;
    font-size: 2.3vmax;
    
}

.link {

    font-size: 1.7vmax;
    color: rgb(0, 23, 194);

}



.founder {

    font-size: 1.2vmax;
    bottom: 5vh;
    font-family: "PlayWrite IS";
    letter-spacing: -1px;

}




h3 {

    font-family: "Ajou";
    text-align: center;
    word-spacing: normal;
    font-size: 1.3vmax;
    position: absolute;
    bottom: 49vh;
    width: 100%;

}


a {

    text-decoration: none;
    color: black;
    
}



