* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: url("../../images/crosshair.png"), auto;
    font-family: 'Inria Sans', sans-serif;
}

.main {
    position: relative;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
}

.main img {
    height: 100vh;
    width: 100vw;
    display: block;
}

.footer {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100vw;
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    align-items: center;
    gap: 2rem;
    padding: 2rem 0;
    box-sizing: border-box;
    background: transparent;
}

.footer img {
    display: block;
    max-width: 220px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.crisol {
    position: fixed;
    top: 0;
    bottom: 25%;
    left: 15%;
    margin: auto 0;
    height: fit-content;
}

.crisol img {
    width: 40%;
    height: auto;
    display: block;
}

.nav {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 3%;
    margin: auto 0;
    height: fit-content;
}

.nav ul {
    list-style: none;
}

.nav li {
    margin-bottom: 20%;
}

.nav a {
    color: white;
    text-decoration: none;
    font-size: 24px;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #ffca5c;
}

.curtain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../../images/curtain.png) center/cover;
    z-index: 9999;
    transform: translateY(-100%);
    transition: transform 1s ease-in-out;
    pointer-events: none;
}

@media (max-width: 575px) {
    .nav a {
        font-size: 18px;
    }

    .footer {
        bottom: 6%;
    }
    .crisol{
        top: 0;
        bottom: 25%;
        left: 5%;
    }

    .crisol img {
    width: 60%;
    }

    .footer img {
        width: 20%;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .nav a {
        font-size: 20px;
    }

    .footer img {
        width: 13%;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .nav a {
        font-size: 22px;
    }

    .footer img {
        width: 14%;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .nav a {
        font-size: 24px;
    }

    .footer img {
        width: 14%;
    }
}

@media (min-width: 1200px) {
    .nav a {
        font-size: 24px;
    }

    .footer img {
        width: 15%;
    }
}