
.footerBackground {
    position: relative;
    right: 1vw;
    width: 110%;
    height: 30vh;
    background: var(--black);
    border-top: 7px solid var(--yellow);
}

.footerLogo {
    position: relative;
    width: 25vmin;
    left: 5vw;
    top: 3vh;
}

.footerText {
    position: relative;
    color: var(--white-light);
    font-family: var(--lightfont);
    font-size: 1.6vmin;
    text-align: center;
    bottom: 0;
    user-select: text;
}

.mailboxText {
    position: relative;
    bottom: 2vh;
}

.footerContent {
    position: absolute;
    width: 60vw;
    height: 20vh;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
}

.footerList {
    position: relative;
    display: grid;
    gap: 0vh;
    justify-content: center;
    align-items: start;
    width: 20vw;
    left: -0.7vw;
}

.footerTitle {
    font-size: 2.4vmin;
    text-transform: uppercase;
    font-family: var(--mediumfont);
    color: var(--white);
    user-select: none;
}

.footerLink {
    position: relative;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.637);
    font-family: var(--regularfont);
    bottom: 1.5vh;
    font-size: 2vmin;
    line-height: 0;
    margin: 0;
    user-select: none;
}

.footerLink:hover {
    color: var(--yellow);
    text-decoration: underline;
}

.underlined {
    text-decoration: underline;
}


@media (orientation: landscape) and (max-width: 1000px) {
    .footerLink {
        text-decoration: underline;
    }    
}

@media (orientation: portrait) {
    .footerLink {
        text-decoration: none;
    }    
}