body {
    font-family: Roboto, sans-serif;
    margin: 0;
}

a {
    text-decoration: none;
}

/*Sing-up section elements*/

.singup-section {
    background: #1F2937;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 12px, 12px;
    flex-wrap: wrap;
    text-align: center;
}

.singup-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    margin: 12px;
}

.singup-subtitle {
    color: #E5E7EB;
    font-size: 18px;
    margin: 12px;
}


.singup-btn {
    color: #F9FAF8;
    font-weight: bold;
    width: fit-content;
    padding: 5px 30px;
    border: solid #3882F6 1px;
    background: #3882F6;
    border-radius: 10px;
    margin: 12px;
    align-self: center;
    box-shadow: gray 1px 1px 5px;
}

.main-image {
    align-items: center;
    width: auto;
    height: auto;
    border-radius: 10px;
    justify-self: center;
    box-shadow: gray 1px 1px 5px;
    margin: 12px;
}

.singup,
.main-img {
    color: white;
    display: flex;
    flex-direction: column;
    width: min(480px, 30%);
    min-width: 280px;
    height: 70%;
    justify-content: center;
}

/*Info section elements*/

.info-title {
    display: flex;
    justify-content: center;
    text-align: center;
    font-size: clamp(26px, 3vw, 36px);
    margin: 12px;
}

.card-section {
    display: flex;
    flex-wrap: wrap;
    min-height: 300px;
    justify-content: center;
    margin: 12px;
}

.card {
    display: flex;
    flex-direction: column;
    align-self: center;
    width: 150px;
    margin: 12px;
}

.card-img {
    border: solid 2px #3882F6;
    max-width: 200px;
    max-height: 210px;
    box-shadow: lightgray 1px 1px 20px;
    border-radius: 6px;
}

.card-subtext {
    font-size: 18px;
    color: #1F2937;
    text-align: center;
    margin: 12px;
}

/* Quote section elements*/

.quote-section {
    display: flex;
    background: #e5e7eb;
    justify-content: center;
    margin: 12px;
}

.quote {
    display: flex;
    flex-direction: column;
    width: min(900px, 50%);
    min-width: 280px;
    margin: 12px;
}

.quote-text {
    font-size: clamp(22px, 3vw, 36px);
    font-style: italic;
    font-weight: 300;
    margin: 12px;
}

.quote-name {
    align-self: flex-end;
    margin: 12px;
}

/* CTA section elements*/

.cta-section {
    display: flex;
    justify-content: center;
    margin: 12px;
}

.cta-container {
    background: #3882F6;
    border: solid 1px #3882F6;
    border-radius: 5px;
    display: flex;
    justify-content: space-around;
    margin: 12px;
    padding: 1rem;
    box-shadow: lightgray 1px 1px 20px;
    flex-wrap: wrap;
}

.cta-call {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 12px;
}

.cta-headline {
    margin-bottom: 0;
    font-size: 20px
}

.cta-subtext {
    margin: 0;
}

.cta-button {
    text-align: center;
    height: fit-content;
    align-self: center;
}

.cta-headline,
.cta-subtext,
.cta-button {
    color: #F9FAF8;
    margin: 0;
}

#cta-link {
    background-color: #E5E7EB;
    color: #3882F6;
    font-weight: bold;
    border: solid 1px;
    display: inline-block;
    border-radius: 15px;
    padding: 10px 30px;
    margin: 12px;
    min-width: 80px;
}

#cta-link:hover {
    background: darkgray;
}

/*Footer section elements*/

.footer {
    display: flex;
    background: #1F2937;
    justify-content: center;
}

.footer-text {
    color: white;
    margin: 12px;
}