* {
    font-family: 'Lato', sans-serif;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

@media (min-width: 768px) {

    body {
        width: 100vw;
        height: 100vh;
        background-color: white;
        padding: 100px 125px;

        .menu-button {
            padding: 12px;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 4px;
            position: fixed;
            top: 32px;
            right: 32px;
            z-index: 4;

            .menu-button-div {
                width: 26px;
                height: 2px;
                background-color: black;
                z-index: 4;
            }
        }

        .title {
            color: black;
            font-size: 55pt;
            font-weight: 300;
            transform-style: preserve-3d;
        }

        .sidebar {
            width: 0;
            height: 100vh;
            background-color: white;
            right: 0;
            top: 0;
            position: absolute;
            display: none;
            transition: all ease 1s;
            z-index: 3;

            .pages {
                position: absolute;
                padding: 75px;
                bottom: 0;
                display: flex;
                flex-direction: column;
                gap: 20px;

                .link {
                    padding: 15px;
                    width: 20vw;

                    a {
                        font-size: 32pt;
                    }
                }
            }
        }

        .background {
            width: 100vw;
            height: 100vh;
            z-index: 2;
            transition: all ease 1.5s;
            position: absolute;
            top: 0;
            left: 0;
        }
    }
}

@media (max-width: 768px) {

    body {

        background-color: black;
    }
}