* {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;

}

body {
    display: flex;
    flex-direction: column;
    margin: 0;
    min-height: 100vh;
}

.body {
    /* flex: 1; */
    display: flex;
    flex-direction: column;
}

a {
    text-decoration: none;
    color: #E5E7EB;
}

.logo {
    display: flex;
    color: #F9FAF8;
    font-size: 24px;
    align-items: center;
}

.header-links {
    display: flex;
    font: 18px; 
    gap: 15px;
    opacity: .5;
    justify-content: flex-end;
}

.header {
    display: flex;
    justify-content:space-between;
    align-items: center;
    background-color: #1F2937;
    padding: 10px 100px;
}

.hero {
    display: flex;
    background-color: #343a43;
    padding: 10px 100px;
    gap: 100px;
    align-items: center;
}

.hero-text {
    display: flex;
    flex-direction: column;
    padding: 50px 0px;
}

.placeholder {
    text-align: center;
    color: #E5E7EB;
    background-color: gray;
    border: #1F2937;
    width: 700px;
    height: 150px;
}

.hero-maintext {
    font-size: 48;
    color: #F9FAF8;
    font-weight: 900;
}

.hero-subtext{
    font-size: 18px;
    color: #E5E7EB;
}

.mid-section {
    text-align: center;
    padding: 10px 100px;
    display: flex;
    justify-content:space-between

}
.mid-container {
    display: flex;
    flex-direction: column;
    align-items:center;
    justify-content: center;
    flex-wrap: wrap;
    width: fit-content;
    gap: 26px;

}

img {
    width: 100px;
    height: 100px;
}

.quote-section {
    display: flex;
    flex-direction: column;
    background-color: #E5E7EB;
    padding: 100px 200px;
}

.quote {
    font-style: italic;
    font-weight: 50;
    font-size: 36px;
    color: #1F2937;
    margin-bottom: 0;
}

.author {
    display: flex;
    justify-content: right;
    margin: 0;
    padding: 0;
    font-weight: bolder;
}

.sign-up {
    display: flex;
    background-color: #3882F6;
    margin: 80px 100px;
    color: #E5E7EB;
    justify-content: space-evenly;
    align-items: center;
    height: 150px;
    border-radius: 10px;
    padding: 15px;

}

button {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #3882F6;
    border: 1px #E5E7EB;
    color:#E5E7EB;
    align-items: center;
    border-radius: 5px;
    height: fit-content;
    width: 80px;
}

.footer {
    display: flex;
    justify-content: center;
    background-color: #1F2937;
    font-size: 18px; 
    color: #E5E7EB;
}

.button-bottom {
    border:#E5E7EB solid;
}