:root {
    --light: #fff;
    --grey: #E0E0E0;
    --dark: #000;
    --yellow: #F7D444; 
}

@font-face {
    font-family: 'Montserrat';
    src: url(fonts/Montserrat-Regular.ttf);
    font-weight: 400;
}

@font-face {   
    font-family: 'MagistralC';
    src: url(fonts/Magistral-Bold.eot) format('embedded-opentype'),
    url(fonts/Magistral-Bold.woff2) format('woff2'),
    url(fonts/Magistral-Bold.woff) format('woff'),
    url(fonts/Magistral-Bold.ttf)  format('truetype');
    font-weight: 700;
}

* {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing:    border-box;
    -ms-box-sizing:     border-box;
    -o-box-sizing:      border-box;
    box-sizing:         border-box;
}

body {
    background-image: url("/img/Dmoge-Desktop-Dark.png");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    color: var(--grey);
    font-family: 'Montserrat';
    font-weight: 400;
    font-size: 1.25vw;
    text-decoration: none;
    letter-spacing: 0.003em;
    line-height: 160%;
}

.content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    padding: 2rem 8vw;
    position: relative;
    height: 100dvh;
}

/* .logo {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 24px;

    width: 100%;
    height: 64px;
} */

/* .logo a {
    width: 200px;
    height: 42px;
    text-decoration: none;
    font-size: 1vw;
    color: var(--light);
} */

.logo_img {
    width: 5vw;
    height: 5vw;
}

main {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

main p {
    text-align: justify;
}

h1 {
    font-family: 'MagistralC';
    font-weight: 700;
    font-size: 7vw;
    line-height: 120%;
}

h1 br {
    display: none;
}

footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    font-size: 1vw;
}

footer p {
    color: var(--yellow);
}


footer a {
    color: var(--grey);
    text-decoration: none;
}


footer a:hover {  
    color: var(--yellow);  
}


@media (max-width: 1023px) {
    body {
        font-size: 1.25rem;
        line-height: 140%;
        text-align: left;
    }

    .content {
        padding: 1.5rem 3rem;
    }

    .logo_img {
        width: 4rem;
        height: 4rem;
    }
    
    main p {
        text-align: left;
    }
    
    h1 {
        font-size: 5rem;
    }

    h1 br {
        display: block;
    }
    
    footer {
        font-size: 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 3rem;
    }
}

@media (max-width: 639px) {
    body {
        font-size: 1rem;
        line-height: 140%;
        text-align: left;
    }

    .content {
        padding: 1.5rem 3rem;
    }

    .logo_img {
        width: 3rem;
        height: 3rem;
    }
    
    main p {
        text-align: left;
    }
    
    h1 {
        font-size: 2.5rem;
    }

    h1 br {
        display: block;
    }
    
    footer {
        font-size: 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 3rem;
    }
}