body {
    margin: 0;
}

/* Background*/
.background {
    overflow: hidden;
    width: 100vw;
    height: 100vh;
    position: fixed;
    z-index: 1;
    margin: 0;

    .background-img {
        min-width: 100%;
        z-index: 1;
    }
}

.castle-img {
    height: 70vh;
    z-index: 2;
    position: relative;
    top: 60vh;
    left: 5vw;
}

/* Title Card */
.title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: yellow;
    z-index: 3;
    font-family: "Big Shoulders Stencil", sans-serif;

    h1 {
        font-size: 7vw;
    }

    h2 {
        font-size: 2.6vw;
    }
}

/* Boxes */
.boxes {
    display: flex;
    overflow-x: hidden;
    margin-top: 40vh;
    margin-bottom: 12vh;
    position: relative;
    z-index: 5;
}

.box {
    flex-basis: 60vw;
    height: 60vh;
    background-color: rgba(0, 0, 0, .5);
    border: 1.4vw solid yellow;
    border-radius: 10px;
    padding: 3vw;
    z-index: 4;
    position: relative;
    color: white;
    flex-shrink: 0;

    h3 {
        text-align: center;
        font-size: 3vw;
    }

    p {
        font-size: 1.6vw;
    }
}

.blank {
    flex-basis: 17vw;
    flex-shrink: 0;

    &.blank-1 {
        flex-basis: 100vw;
    }
}

/* Media Query - Small View */
@media screen and (max-width: 800px) {
    
    .castle-img {
        width: 80vw;
        height: auto;
    }

    .title {
        h1 {
            font-size: 100px;
        }

        h2 {
            font-size: 40px;
        }
    }

    .box {
        border: 8px solid yellow;

        h3 {
            font-size: 25px;
        }

        p {
            font-size: 16px;
        }
    }
}