body {
    margin: 0;
    padding: 0;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    background-color: #000000;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom center;
    background-attachment: fixed;
    color:#2c76f3;
    box-sizing: border-box;
}

a {
    color:inherit;
    text-decoration:none;
}

.container {
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:space-between;
    height:100vh;
    width:100%;
    box-sizing: border-box !important;
    padding:30px;
}

ul, li {
    margin:0;
    padding:0;
}

nav {
    display:flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width:100%;
    text-transform: uppercase;
    box-sizing: border-box;
}

nav ul {
    display:flex;
    flex-direction:row;
    justify-content: space-between;
    align-items: flex-start;
    width:auto;
    list-style:none;
    font-size:1.5rem;
    box-sizing: border-box;
    line-height:1rem;
    margin-right:20px;
    padding-top:4px;
}

nav li {
    margin-right:3px;
    padding-bottom:8px;
    box-sizing: border-box;
}

nav button {
    display:block;
    width:100%;
    background:none;
    outline:none;
    color:inherit;
    border:solid 1px;
    box-sizing: border-box;
    padding:20px 40px;
    border-radius:30px;
    font-family:inherit;
    font-size:1.25rem;
    font-weight:200;
    background-color: rgba(44, 118, 243, 0.1);
    transition:background-color 0.8s ease;
}

nav button:hover {
    cursor:pointer;
    background-color: rgba(44, 118, 243, 0.4);
}

.nav-right {
    display:flex;
    flex-direction:row;
    align-items: center;
    width:auto;
}

.sign-up {
    box-sizing: border-box;
    width: 100%;
    padding:30px;
    border:solid 1px;
    border-radius:30px;
    background-color: rgba(44, 118, 243, 0.1);
    transition:background-color 0.8s ease;
}

.sign-up:hover {
    background-color: rgba(44, 118, 243, 0.4);
}

.sign-up h1 {
    font-size: 2em;
    margin-bottom: 30px;
    text-align: center;
    font-weight:200;
    text-transform: lowercase;
}

.logo {
    width:85px;
    margin-bottom:30px;
}

.out-now {
    display:flex;
    flex-direction:column;
    justify-content: center;
    align-items: center;
    width:100%;
}

.ep-cover {
    width:100%;
}

@media (max-width:600px) {
    nav {
        flex-direction:column;
        width:100%
    }

    nav ul {
        margin-right:0;
        margin-bottom:40px;
        width:100%;
        justify-content: space-between;
        font-size:2rem;
    }

    nav li {
        padding:0;
    }

    .nav-right {
        flex-direction: column;
    }
}