* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0%;
    background-color: #000000;
}

/* Scrollbar */
::-webkit-scrollbar {
    display: none;
}

::selection {
    color: #FFFFFF;
    background-color: #000000;
}

/* Container */
.container {
    width: 100%;
    height: 100vh;
}

.copy {
    position: absolute;

    top: 50%;
    width: 100%;
    padding: 0.5rem;

    display: flex;
    justify-content: space-around;
}

.title {
    color: #FFFFFF;
    font-family: Helvetica, Arial, sans-serif;
    text-transform: uppercase;
    font-size: 0.7em;
    font-weight: bold;
}

.link {
    font-family: Helvetica, Arial, sans-serif;
    text-transform: uppercase;
    font-size: 0.7em;
    font-weight: lighter;
}

.link a {
    color: #FFFFFF;
    text-decoration: none;
}

/* Book */
section.book {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 0;
}