/* Wrapper and containers */
body {
    background: #280137;
    margin: 0px;
    margin-left: 1rem;
    margin-right: 1rem;
}

.wrapper {
    color: white;
    display: flex;
    flex-direction: column;
    font-family: 'Figtree', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    height: 100vh;
    margin-left: auto;
    margin-right: auto;
    max-width: 960px;
    width: 100%;
}

/* Page content */
.content-container {
    align-items: center;
    display: flex;
    flex: 1;
    width: 100%;
}

.spotlight {
    padding-bottom: 10%;
    padding-right: 0%;

    h1 {
        font-size: 3.8rem;
        font-weight: 800;
    }
    
    p {
        font-size: 1.5rem;
        font-weight: 300;
    }

    .highlight {
        color: #C6F6B3;
    }
}

/* Newsletter signup */
.form-container {
    display: flex;
    padding-bottom: 10%;
    width: 100%;
}

.form-description {
    box-sizing: border-box;
    font-weight: 300;
    padding-right: 3rem;
    width: 50%;

    h2 {
        font-size: 1.5rem;
        font-weight: 800;
    }

    p {
        font-size: 1rem;
    }
}

.form {
    background: white;
    border-radius: 10px;
    color: black;
    flex-grow: 1;
}

/* Footer */
.footer-container {
    border-top: solid 1px white;
    display: flex;
    flex-wrap: wrap;
    padding-top: 1rem;
    width: 100%;
}

.footer-item {
    width: 50%;
}

.contact {
    text-align: right;
    width: 50%;

    p {
        margin: 0px;
    }
}

.copyright {
    font-family: 'Figtree', sans-serif;
    font-size: 0.75rem;
    font-style: italic;
    padding-bottom: 0.75rem;
    padding-top: 0.75rem;
    text-align: center;
    width: 100%;
}

@media screen and (max-width: 900px) {
    .form-container {
        flex-direction: column;
    }

    .form-description {
        padding-bottom: 2rem;
        width: 100%;
    }
  }

a {
    color: #C6F6B3;
}