@font-face {
    font-family: 'Ginora Sans';
    src: url('../fonts/ginora_sans/Ginขra\ Sans\ Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Ginora Sans';
    src: url('../fonts/ginora_sans/Ginขra\ Sans\ Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Ginora Sans';
    src: url('../fonts/ginora_sans/Ginขra\ Sans\ Oblique.otf') format('opentype');
    font-weight: normal;
    font-style: oblique;
}

@font-face {
    font-family: 'Ginora Sans';
    src: url('../fonts/ginora_sans/Ginขra\ Sans\ Light.otf') format('opentype');
    font-weight: lighter;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/static/Montserrat-Regular.ttf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/static/Montserrat-Bold.ttf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/static/Montserrat-Light.ttf') format('opentype');
    font-weight: lighter;
}

@font-face {
    font-family: 'Ambiguity';
    src: url('../fonts/Ambiguity.ttf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

body {
    background-color: #FFF;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-image: url('../background.jpg');
    background-repeat: repeat;
    font-family: 'Montserrat', Arial, sans-serif !important;
    overflow-y: hidden;
}

.menu {
    background-color: #F26A8D;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 36%;
    justify-content: flex-end;
}

@media (min-width: 768px) {
    .container {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 80vw;
    }
    .logo {
        width: 30vw; 
        display: flex; 
        justify-content: start;
    }
    .content {
        width: 70vw; 
        /* background-color: green; */
        height: 100vh;
        display: flex;
        align-items: center;
    }
    .logo img {
        width: 83%;
    }
    .content img {
        width: 21%; 
        height: auto;
        position: absolute;
        left: 53%;
        bottom: 0;
    }
    .envolve-menu {
        display: flex;
        justify-content: end;
        width: 100%;
    }
}

@media (max-width: 767px) {
    .logo img {
        width: 40%;
        display: block;
        margin: auto;
    }
    .content {
        display: flex; 
        justify-content: center;
        margin-top: 20px;
    }
    .menu {
        width: 55%;
    }
    .content img {
        width: 55%; 
        height: auto;
        position: absolute;
        left: -2px;
        bottom: 0px;
    }
    .envolve-menu {
        display: flex;
        justify-content: end;
        width: 90%;
    }
    body {
        font-size: 12px;
    }
}

@media (min-width: 500px) and (max-width: 766px) {
    .content img {
        width: 50%; 
        height: auto;
        position: absolute;
        left: -2px;
        bottom: 0px;
    }
}

.menu-button {
    text-decoration: none;
    color: white;
    border: 1px solid white;
    padding: 10px 20px;
    text-align: center;
    border-radius: 5px;
    width: 90%;
    font-weight: lighter;
    display: block;
    cursor: pointer;
}

.menu a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons i {
    color: #FFF;
    font-size: 22px;
}

a {
    text-decoration: none;
    width: fit-content;
}
