@media (min-width: 768px) {

    body {

        .landing-photo {
            width: 100vw;
            height: 100vh;
            position: relative;
            top: 0;
            left: 0;

            img {
                object-fit: cover;
                width: 100%;
                height: 100%;
            }

            h1 {
                position: absolute;
                top: 20%;
                left: 50%;
                transform: translate(-50%, 0);
                font-size: 6vw;
                color: rgb(255, 255, 255);
                backdrop-filter: blur(1px);
                font-weight: 300;
                font-family: 'Verdana', sans-serif;
            }
        }

        .pages {
            position: relative;
            width: 85vw;
            height: 70vh;
            padding: 15vh 7.5vw;
            display: flex;
            justify-content: space-between;

            .page {
                width: 25vw;
                background-color: blue;
                height: 100%;
                transition: all ease 0.5s;

                a {
                    width: 100%;
                    height: 100%;
                    position: relative;
                    top: 0;
                    left: 0;
                }

                .page-img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }

                p {
                    position: relative;
                    bottom: 18px;
                    left: 15px;
                    transform: translateY(-100%);
                    font-size: 22pt;
                    color: white;
                    font-weight: 200;
                    text-decoration: none;
                    width: fit-content;
                }
            }

            .page:hover {
                width: 30vw;
            }
        }
    }
}

@media (max-width: 768px) {

    body {

        background-color: black;
    }
}