/* Import font */
@font-face {
    font-family: Roboto;
    src: url(fonts/roboto/Roboto-VariableFont_wdth\,wght.ttf) format('truetype');
}

body {
    margin: 0;
    padding: 0;

    display: flex;
    flex-direction: column;
    
    font-family: Roboto;
}

header {
    font-size: 18px;
    padding: 0 200px 50px 200px;
    
    display: flex;
    flex-direction: column;
    
    color: white;
    background-color: #1F2937;
}

header .hero {
    display: flex;
    justify-content: space-between;
    gap: 18px;
}

header .left, .right {
    max-width: 50%;
}

header .left {
    display: flex; 
    flex-wrap: wrap;
}

header .right {
    display: flex;
    flex: 1;
    justify-content: center;
    align-items:     center;
    text-align:      center;
    background-color: gray;
}

header .logo {
    padding-bottom: 25px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    
    color: #F9FAF8;
    font-size: 24px;
}

header .logo .links { 
    display: flex;
    gap: 8px;
    
    color: #E5E7EB;
    list-style: none;
    font-size: 18px;
}

header .hero .left .title {
    color: #F9FAF8;
    font-weight: 900;
    font-size: 48px;
}

.signup-button {
    padding: 2px 16px;
    border-radius: 5px;
    
    color: #F9FAF8;
    background-color: #3882F6;
}

.button1 {
    border:1px solid #3882F6;
    font-weight: 900;
}

.button2 {
    border: 1px solid #F9FAF8;
    margin-left: auto;
}

main { 
    margin-top: 32px;
    
    display: flex;
    flex-direction: column;
    align-items: center;
}

main .info {
    margin-bottom: 32px;
    
    color: #1F2937;
    font-size: 36px;
}

.image {
    height: 100px;
    width:  100px;
    
    border-radius: 10px;
    border: solid #3882F6;
}

.squares {
    margin-bottom: 64px;
    
    display: flex;
    gap: 32px;
}

.square {
    max-width: 100px;
    
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    
    text-align: center;
}

.quote {
    padding: 100px 400px;
    
    display: flex;
    justify-content: center;
    align-items:     center;
    flex-wrap: wrap;
    
    color: #1F2937;
    background-color: #E5E7EB;
    font-size: 36px;
    font-weight: 300;
    font-style: italic;
}

.quote .signature {
    margin-left: auto;
    
    font-size: 36px;
    font-weight: 900;
}

.signup {
    padding: 32px 64px;
    margin: 64px 0;
    border-radius: 5px;

    display: flex;
    align-items: center;
    gap: 64px;

    background-color: #3882F6;
}

.signup .text {
    color:#E5E7EB;
    font-size: 16px;
}

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