body {
    font-family: 'Lato', sans-serif;
    margin: 0;
    background-color: #252525; 
    color: #f0f0f0;
}

a {
    color: #196DDA;
    text-decoration: none;
}

.top-nav-content h1 {
    margin: 0;
}

.top-nav-content h2 {
    margin: 8px 0 0 0;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px 20px 20px;
}

.top-nav-content {
    margin: 0 auto;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
}

section { 
    display: flex;
    flex-direction: column;
    margin-top: 8px;
} 

.about h3, .about h2 {
    text-align: center;
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-image img { 
    height: 440px;
    width: 203px;
    transform: rotateY(-15deg) rotateX(-10deg);
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.2);
    border-radius: 30px;
 }

 .about-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
 }

 .about-content li {
    margin-bottom: 20px;
 }

 .signup-section h2 {
    text-align: center;
    margin-bottom: 8px;
 }

 .signup-section p {
    text-align: center;
    margin-bottom: 4px;
    margin-top: 2px;
 }  

 #waitlist-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
    margin-top: 12px;
 }

 .waitlistEmailEntry {
    padding: 6px;
    border-radius: 8px;
    width: 220px;
    height: 28px;
    border: none;
    outline: none;
    text-align: center;
    font-size: 16px;
 }

 .resetEntry {
    padding: 6px;
    border-radius: 8px;
    width: 220px;
    height: 28px;
    border: none;
    outline: none;
    text-align: center;
    font-size: 16px;
    margin-top: 8px;
 }

 .waitlistButton {
    border-radius: 8px;
    width: 150px;
    height: 42px;
    justify-content: center;
    align-items: center;
    margin-top: 14px;
    background: linear-gradient(to right, #0059C2, #3582F4);
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    outline: none;
}

.resetButton {
    border-radius: 8px;
    width: 150px;
    height: 42px;
    justify-content: center;
    align-items: center;
    margin-top: 14px;
    background: linear-gradient(to right, #0059C2, #3582F4);
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    outline: none;
}

footer { 
    text-align: center;
    padding: 20px;
} 

@media (min-width: 768px) {
    .about-content {
        flex-direction: row;
        justify-content: space-around;
    }

    .about-text {
        width: 50%;
    }
}
