@import url("https://fonts.googleapis.com/css?family=Slabo+27px|Zilla+Slab&display=swap");
@import url("https://fonts.googleapis.com/css?family=Roboto&display=swap");

html{
    height: 100%;
}

#__next {
    height: 100%;
}

body {
    background: rgb(66, 39, 90);
    background: linear-gradient(180deg, rgba(66, 39, 90, 1) 0%, rgba(115, 75, 109, 1) 100%);
    margin: 0;
    background-repeat: no-repeat;
    background-attachment: fixed;
    font-family: Roboto;
    height: 100%;
    color: white;
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
    height: 100%;
}

nav {
    flex: 40%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    background-color: rgba(30, 30, 30, 0.9);
}

main {
    flex: 40%;
    padding: 2rem;
    font-family: 'Zilla Slab', serif;
}

.bg {
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-image: url("https://cdn.pixabay.com/photo/2015/02/02/11/08/office-620817_960_720.jpg");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    width: 100%;
    height: 100%;
    opacity: 0.05;
}

a {
    padding-top: 2rem;
    padding-bottom: 2rem;
    margin: 3rem;
    background-color: #02915f;
    color: white;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    border-bottom: 0.5rem solid #004e33;
}

a:hover {
    background-color: #004e33;
    border-bottom: 0.5rem solid #002b1c;
}

h1 {
    color: white;
    text-transform: uppercase;
    border-bottom: 1px solid white;
}