@font-face {
    font-family: "custom";
    src: url("./modules.ttf");
}

@font-face {
    font-family: "custom2";
    src: url("./MrDeHaviland-Regular.ttf");
}

@font-face {
    font-family: "custom3";
    src: url("./Roboto-Thin.ttf");
}

body {
    all: unset;
    font-family: "custom3";
}

.main {
    width: 100%;
    min-height: 100vh;
    padding-top: 3vh;
    background-image: url("./background1.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

@keyframes animLogo {
    0% {
        transform: translateY(25vh) scale(2);
        backdrop-filter: blur(0px);
    }
    100% {
        transform: translateY(0vh) scale(1);
        backdrop-filter: blur(45px);
    }
}

.logo {
    margin: auto;
    width: 40%;
    animation: animLogo 1s;
    backdrop-filter: blur(45px);
    padding-left: 50px;
    padding-right: 50px;
}

.logo img {
    width: 100%;
}

.separator {
    width: 90%;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 20px;
    border-top: 0.5px solid black;
}

.content {
    flex: 1;
    width: 50vw;
    background-color: rgb(255, 255, 255, 0.8);
    padding: 20px;
}

@keyframes animContainer {
    0% {
        opacity: 0;
        transform: translateY(5vh);
        backdrop-filter: blur(50px);
    }
    60% {
        opacity: 0;
        transform: translateY(5vh);
    }
    100% {
        opacity: 1;
        transform: translateY(0vh);
        backdrop-filter: blur(50px);
    }
}

.container {
    display: flex;
    flex-direction: row;
    animation: animContainer 2s;
    backdrop-filter: blur(50px);
    align-items: flex-start;
    width: 70vw;
    margin: auto;
    margin-top: 10vh;
}

.menu {
    width: 20vw;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.menu h4 {
    font-family: "custom2";
    font-weight: 100;
    font-size: 55px;
    margin: 0;
}

.menu .link {
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    border-top: 0.5px solid white;
    background-color: rgba(255,255,255,0);
    transition: 0.5s;
    width: 100%;
}

.menu .link:hover {
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    border-top: 0.5px solid white;
    background-color: rgba(255,255,255,1);
    width: 100%;
}

.menu .link:hover a {
    color: black;
    font-weight: 800;
}

.menu .link a {
    transition: 0.5s;
    color: white;
    font-size: 20px;
    color: white;
    font-weight: 800;
    text-decoration: none;
    font-family: "custom3";
}


h2 {
    font-family: "custom3";
    font-size: 30px;
    font-weight: 800;
    text-align: center;
}

p {
    font-family: "custom";
    font-size: 15px;
}

@media (max-width: 767px) {
    .menu {
        width: 100%
    }
    .content {
        width: calc(100% - 40px);
    }
    .container {
        flex-direction: column;
        width: 95vw;
    }
}