body, div {
    margin: 0px;
    padding: 0px;
}

body {
    font-family: sans-serif;
    height: 100vh;
    width: 100vw;
    /*background-color: white;*/
}

div.wrapper {
    overflow: hidden;
    height: 100vh;
    width: 100vw;
}

div.texture {
    position: fixed;
    background-image: url('/images/city-outline.png');
    background-position: bottom right;
    background-repeat: repeat-x;
    margin: 0px auto;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    opacity: 1;
}

div.main {
    margin: 0px auto;
    width: 100vw;
    height: 110vh;
}

div.space {
    height: 30px;
}

div.poster {
    overflow: visible;
    position: fixed;
    background-size: auto calc(100vh - 40px);
    background-image: url('/images/poster.jpg');
    background-position: right;
    background-repeat: no-repeat;
    width: 100vw;
    right: 10vw;
    height: calc(100vh - 40px);
}

div.entry_button {
    background-color: white;
    border: 2px solid white;
    max-width: 400px;
    /*background-color: rgba(0, 0, 0, 0);*/
    position: absolute;
    top: 35vh;
    right: 50vw;
    width: 50vw;
    text-align: center;
    z-index: 10;
}

@media (max-width: 1600px) {
    div.entry_button {
        border: 2px solid #282525;
    }
}

button {
    border: none;
    /*background-color: white;*/
    background-color: rgba(0, 0, 0, 0);
    color: #00B7FF;
    transition: 0.2s ease-in-out;
    transition-property: box-shadow, color;
    box-shadow: inset 0 0 0 0 #00B7FF;
}

button:hover {
    color: white;
}

button.big {
    padding: 15px;
    font-size: 4em;
}

button.big:hover {
    box-shadow: inset 400px 0 0 0 #00B7FF;
}

button.small {
    padding: 5px;
    font-size: 1em;
}

button.small:hover {
    box-shadow: inset 120px 0 0 0 #00B7FF;
}

div.copyright {
    font-size: 0.9em;
    text-align: left;
    position: absolute;
    bottom: 18px;
    left: 18px;
    /*right: 0px;*/
    color: rgb(130, 121, 121);
}

div.copyright p {
    margin: 0px;
    padding: 0px;
}
