.landing-container {
    position: relative;
    height: 1000px;
}

.landing-container .tagline {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.landing-container .tagline h2 {
    font-size: 42px;
    color: var(--fg2);
    width: 70%;
    text-align: center;
    margin: 0 auto;
}

.hexagon-border {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    --b: 10px;
    height: 560px;
    aspect-ratio: 1/cos(30deg);
    clip-path: 
      polygon(0 50%,50% -50%,100% 50%,50% 150%,0 50%,
      var(--b) 50%,
      calc(25% + var(--b)*cos(60deg)) calc(100% - var(--b)*sin(60deg)),
      calc(75% - var(--b)*cos(60deg)) calc(100% - var(--b)*sin(60deg)),
      calc(100% - var(--b)) 50%,
      calc(75% - var(--b)*cos(60deg)) calc(var(--b)*sin(60deg)),
      calc(25% + var(--b)*cos(60deg)) calc(var(--b)*sin(60deg)),
      var(--b) 50%);
    background: var(--bg2);
}

.hexagon-fill {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    height: 560px;
    aspect-ratio: 1/cos(30deg);
    clip-path: 
      polygon(0 50%,50% -50%,100% 50%,50% 150%,0 50%);
    background: black;
    opacity: 0.6;
}

.hexagon-decoration-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
}

.hexagon-decoration-one {
    position: absolute;
    top: -306%;
    left: 178%;
    transform: translate(-50%, -50%);
    
    height: 115px;
    aspect-ratio: 1/cos(30deg);
    clip-path: 
      polygon(0 50%,50% -50%,100% 50%,50% 150%,0 50%);
    background: var(--bg2);
}

.hexagon-decoration-two {
    position: absolute;
    top: 106%;
    left: -316%;
    transform: translate(-50%, -50%);
    
    height: 93px;
    aspect-ratio: 1/cos(30deg);
    clip-path: 
      polygon(0 50%,50% -50%,100% 50%,50% 150%,0 50%);
    background: var(--bg4);
}

.hexagon-decoration-three {
    position: absolute;
    top: 339%;
    left: 267%;
    transform: translate(-50%, -50%);
    
    height: 74px;
    aspect-ratio: 1/cos(30deg);
    clip-path: 
      polygon(0 50%,50% -50%,100% 50%,50% 150%,0 50%);
    background: var(--bg3);
}

#landing-window {
    z-index: -1;
}

@media only screen and (max-width: 700px) {

    .landing-container {
        height: 700px;
    }

    .hexagon-border {
        height: 430px;
    }

    .hexagon-fill {
        height: 430px;
    }

    .hexagon-decoration-one {
        display: none;
    }
    
    .hexagon-decoration-two {
        display: none;
    }
    
    .hexagon-decoration-three {
        display: none;
    }

    .landing-container .tagline h2 {
        font-size: 32px;
    }
}

@media only screen and (max-width: 550px) {
    .landing-container {
        height: 400px;
    }

    .hexagon-border {
        height: 220px;
    }

    .hexagon-fill { 
        height: 220px;
    }

    .landing-container .tagline h2 {
        font-size: 20px;
    }
}