@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,700;1,300&display=swap');

* {
    font-family: 'Roboto', sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    background-color: #1F2937;
    margin: 0px;
}

.logo {
    font-size: 24px;
    color: #f9faf8;
    padding: 16px;
    font-weight: bold;
}

.header {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

ul {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
    list-style-type: none;
    padding: 0px;
}

a {
    text-decoration: none;
}

.nav-link {
    color: #E5E7EB;
    font-size: 18px;
}

.first-section {
    display: flex;
    justify-content: center;
    gap: 40px;
    align-items: center;
    padding: 80px;
}

.main-image {
    height: 200px;
    width: 400px;
    background-color: gray;
}

.title {
    font-size: 48px;
    font-weight: bolder;
    color: #f9faf8;
    margin: 0px;
    margin-bottom: 10px;
}

.subtext {
    font-size: 18px;
    color: #e5e7eb;
    margin: 0px;
    margin-bottom: 10px;
    font-weight: lighter;
}



.intro {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    width: 30%;
}

.signup-top {
    width: 20%;
    padding: 6px;
    border-radius: 10px;
    color: white;
    text-align: center;
    background-color: #3882F6;
    font-weight: bold;
}

.information-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px;
    background-color: white;
}

.info-section {
    display: flex;
    gap: 50px;
}

.info-snippet {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
    width: 200px;
}

.info-txt {
    text-align: center;
}

.info-title {
    font-size: 36px;
    font-weight: bolder;
    color: #1f2937;
}

.info-img {
    height: 200px;
    width: 200px;
    border: #3882F6;
    border-style: solid;
    border-radius: 10px;
}  

.quote-section {
    background-color: #E5E7EB;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 120px;
    justify-content: center;
}

.quote {
    font-size: 36px;
    font-style: italic;
    margin: 0px;
}

.quote-author {
    align-self: flex-end;
    margin: 0px;
    font-weight: bold;
    font-size: 24px;
    padding-top: 10px;
}

.quote-box {
    display: flex;
    flex-direction: column;
    width: 50%;
    align-items:start;
}

.signup-section{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 120px;
    background-color: white;
}

.signup-module {
    display: flex;
    background-color: #3882F6;
    border-radius: 15px;
    justify-content: space-between;
    padding: 50px 40px 50px 40px;
    width: 50%;
    align-items: center;
}

.signup-info {
    display: flex;
    flex-direction: column;
    color: white;
}

.signup-title,
.signup-txt {
    margin: 0px;
    flex: 0;
}

.signup-txt {
    font-style: italic;
}

.signup-bottom {
    border: 2px solid white;
    width: 15%;
    padding: 6px;
    border-radius: 10px;
    color: white;
    text-align: center;
    font-weight: bold;
}

.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

.footer-info {
    color: white;
    margin: 0px;
    padding: 30px;
}