.landing-page {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.background-squares {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6;
}

.landing-page-logo {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: black;
    padding: 10vh 0;
}
.landing-page-logo img {
    max-height: 20vh;
    max-width: 80vw;
    width: clamp(300px, 70vw, 800px);
    background-color: black;
}
