* {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings:
        "wdth" 100;
    font-size: 12px;
}

.nav-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1F2937;
    padding-right: 30px;

}

.nav-links a {
    text-decoration: none;
    margin: 0px 10px;
}

.nav-links li {
    list-style: none;
    color: #E5E7EB;
    font-size: 1.5rem;
    
}

.nav-links  svg {
    height: 50px;
    width: 50px;
}

#nav-home {
    font-weight: bold;
    font-size: 3rem;
    padding-left: 30px;
    margin-right: auto;

}
#hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* align-content: center; */
    gap: 100px;
    height: 94.2vh;
    background-color: #1F2937;
    color: #f9faf8;
    /* padding-top: 100px;
    padding-bottom: 100px; */
}

#hero-main {
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
}

#hero h1 {
    font-weight: 900;
    font-size: 3rem;
    margin-bottom: 30px;
}

#hero {
    color: #E5E7EB;
    font-size: 1.5rem;
}

.left {
    max-width: 30vw;
}

.green {
    color: green;
    text-decoration: underline;
}

.purple {
    text-decoration: underline;
    color: purple;
}

button {
    background-color: #3882F6;
    font-size: 1.5rem;
    color: #f9faf8;
    padding: 10px;
    border-radius: 10px;
}

#hero button {
    border: none;
    margin-top: 50px;
}

button > svg {
    height: 25px;
    width: 25px
}

#hero img {
    max-width: 40vw;
    border-radius: 50px;
    border: #3882F6 solid 5px;
}

/* Info */
#info {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 50px;
    padding-bottom: 50px;
    height: 500;
}

#info > h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

#info-boxes {
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    width: 100vw;
}

.info-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    max-width: 250px;
    max-height: 500px;
    font-weight: 300;
}

.info-box h3 {
    font-size: 1.25rem;
}

.info-box p {
    font-size: 1rem;
}

.info-box img {
    height: 200px;
    width: 200px;
    border: #3882F6 solid 5px;
    border-radius: 50px;
}

#testimonial {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #E5E7EB;
    height: 500px;
}

.testimonial-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50vw;

}

.testimonial-txt {
    font-size: 36px;
    font-weight: 300;
}

.testimonial-author {
    align-self: flex-end;
    font-size: 24px;
    font-weight: 600;
}

/* Call to action */
#call-to-action {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
}

.call-to-action-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 75vw;
    height: 100px;
    background-color: #3882F6;
    border-radius: 15px;
    padding: 20px;
}

.call-to-action-txt {
    color: #f9faf8;
}

.call-to-action-txt h3 {
    font-size: 22px;
}

.call-to-action-content > button {
    border: #f9faf8 solid 1px;
    flex-grow: 0;
}

#footer {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #1F2937;
    color: #f9faf8;
    height: 100px;
}