:root {
    --background-color: #f5f5f5;
    --accent-color: #b87333;
    --primary-color: #2c2c2c;
  
    --responsive-large-text-size: clamp(32px, 5vw, 70px);
    --responsive-medium-text-size: clamp(14px, 2.5vw, 24px);
    --responsive-small-text-size: clamp(10px, 1.5vw, 15px);
  
    --faded-primary-color: #2c2c2c27;
    --faded-background-color: #f5f5f53a;
  
    font-family: "Inter", sans-serif;
    color: white;
  }

.geo{
    font-family: "Geologica", sans-serif;
}

.lander{
    width: 100%;
    height: 100vh;
    background-image: url('../Images/Lander Image.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.shade{
    width: 100%;
    height: 100%;

    background-color: rgba(0, 0, 0, 0.568);
    position: relative;
    top: 0;
    padding: clamp(12px , 3vw , 54px);

    display: grid;
    grid-template-columns: auto auto;
    grid-template-rows: auto auto;
}

.lander h1{
    font-size: var(--responsive-large-text-size);
    letter-spacing: 4px;
    font-weight: 400;
}

.lander p{
    color: var(--accent-color);
    font-family: "Geologica", sans-serif;

    grid-column: 2/2;
    grid-row: 2/2;
    align-self: flex-end;
}

.nav-button{
    width: 50px;
    height: 50px;
    border-radius: 15px;
    grid-column: 1/2;
    grid-row: 2/2;

    align-self: flex-end;

    position: relative;

    z-index: 98;
}

#lander-p{
    position: relative;
    bottom: 0;
    right: 0;
    width: clamp(200px , 30vw , 250px);
    color: var(--background-color);
    opacity: 0.7;
    align-self: flex-end;
    justify-self: flex-end;
    font-family: "Geologica", sans-serif;
}

@media (max-width: 576px) {
    .lander{
        background-image: url(../Images/Lander\ Image\ [Mobile].png);
    }
}