* {
    padding: 0;
    margin: 0;
}

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

}

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


.container {

    width: 100%;
    height: 100vh;
    background-color: white;

}

.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 {


    width: 100%;
    text-align: center;
    justify-content: center;
    word-spacing: normal;
    font-family: "Canela", "Canela2";
    font-size: 5vmax;
    bottom: 52vh;
    position: absolute;
    

} 


h2 {

    text-align: center;
    justify-content: center;
    word-spacing: normal;
    font-family: "Ajou";

}

.notion {

    margin-top: 33vh;

}




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;
}



