html, body {
    box-sizing: border-box;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
  
body {
    height: 100vh;
    width: 100vw;
    font-family: 'Barlow', sans-serif;
    background: #000000;
    color: #FFFFFF;
}

header {
    margin-top: 25px;
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    margin-left: 75px;
    font-weight: 500;
}

header a {
    transition: 0.3s;
    color: #FFFFFF;
    text-decoration: none;
    display: inline-block;
    padding: 15px;
}

header a:hover {
    opacity: 0.75;
}

header #menu {
    margin-right: 75px;
}

#hero {
    height: calc(100vh - 125px);
    width: 100%;
    background: #000000;
}

#hero-info {
    margin-top: 100px;
    margin-left: 75px;
}

#hero h1 {
    margin: 0;
    font-size: 108px;
    font-weight: 400;
    width: 500px;
    background: -webkit-linear-gradient(#8EC5FC, #E0C3FC);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#hero p {
    margin: 0;
    margin-top: 35px;
    font-size: 18px;
    font-weight: 300;
    width: 500px;
    word-wrap: break-word;
}

#hero-links {
    margin-top: 50px;
    display: flex;
}

#hero-links a {
    margin-right: 25px;
}

.hero-button {
    display: flex;
    align-items: center;
    transition: 0.3s;
    text-decoration: none;
    color: #FFFFFF;
    font-weight: 600;
    padding: 10px 20px 10px 20px;
    border-radius: 25px;
    background: #D9AFD9;
}

.button-gray {
    background: rgb(38, 38, 38);
}

.hero-button span {
    margin-left: 5px;
    margin-top: 2px;
    font-size: 18px;
    font-weight: 400;
}

.hero-button:hover {
    background: #D17BD5;
}

#code {
    font-family: 'Inconsolata', monospace;
}

footer {
    color: rgb(163 163 163);
    margin-top: 100px;
    border-top: solid 1px rgb(38, 38, 38);
    padding-bottom: 200px;
}

#footer-links {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-link-section {
    margin-top: 50px;
    margin-left: 75px;
    margin-right: 75px;
}

.footer-link-section h1 {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 400;
}

.footer-link-section ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-link-section a {
    transition: 0.3s;
    color: rgb(163 163 163);
    text-decoration: none;
    display: inline-block;
    margin-top: 15px;
}

.footer-link-section a:hover {
    color: #FFFFFF;
}

#copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: 75px;
    margin-right: 75px;
    margin-top: 75px;
    border-top: solid 1px rgb(38, 38, 38);
    padding-top: 15px;
}

#copyright-links a {
    transition: 0.3s;
    color: rgb(163 163 163);
    text-decoration: none;
    display: inline-block;
    margin-top: 15px;
    margin-left: 25px;
}

#copyright-links a:hover {
    color: #FFFFFF;
}

#waitlist {
    background: rgb(38, 38, 38);
    margin-left: 75px;
    margin-right: 75px;
    padding: 35px;
    border-radius: 10px;
}

#waitlist h1 {
    margin-top: 0;
}