* {
    box-sizing: border-box;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 19px;
    color: #FFF;
}

body {
    margin: 0;
}

a {
    text-decoration: none;
}

html {
    background-color: #4A5462;
}

header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav {
    list-style: none;
    padding-left: 0;
    display: flex;
}
.nav ul {
    display: flex;
    flex-shrink: 1;
}

.nav li {
    padding-right: 60px;
    flex-shrink: 1;
}

.social {
    display: flex;
    flex-wrap: wrap;
}

.pr30 {
    padding-right: 30px;
    padding-bottom: 10px;
}

.wrapper {
    height: 300vh;
    width: 80%;
    margin: 0 auto;
}

#home {
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    padding-top: 3%;
}

#roadmap {
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
}

#metaverse {
    height: 100vh;
}

.content-home {
    padding-top: 10%;
    display: flex;
    flex-direction: column;
    max-width: 1000px;
}

.content-home p {
    margin-top: 30px;
}

.content-roadmap {
    height: 100%;
    min-width: 150px;
    display: flex;
    padding-top: 10%;
    justify-content: space-around;
    flex-wrap: wrap;
}

.content-metaverse {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding-top: 10%;
}

.timeline {
    display: flex;
    flex-direction: column;
    width: 20%;
}

h1 {
    font-size: 64px;
    margin-bottom: 0;
}

.junkmail {
    height: 60px;
    line-height: 60px;
    width: 255px;
    background-color: #c4c4c4;
    color: #000;
    font-weight: 700;
    margin-top: 50px;
    text-align: center;
}

.junkmail:hover {
    background-color: #d4d4d4;
}

.back-to-top {
    position: sticky;
    bottom: 30%;
    text-align: right;
    color:#c4c4c4;
    opacity: 0.2;
}

.wrapper-sections {
    height: 200vh;
}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 27vh;
    margin: 0;
    padding: 0;
    background-image: url('images/dicks.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-attachment: fixed;
    background-position-y: bottom;
}