body {
    margin: 0px;
}

.header {
    background-color: #1F2937;
    font-family: Roboto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 60px;
    
}

.logo {
    font-size: 24px;
    color: #F9FAF8;
    font-weight: bold;
    padding-left: 100px;
}
.right-links ul {
    padding-left: 250px;
   
    display: flex;
    gap: 20px;
}
.right-links li {
    list-style-type: none;
} 

.right-links a {
    color: #E5E7EB;
    font-size: 18px;
    text-decoration: none;
}

.main-section {
    background-color: #1F2937;
    font-family: Roboto;
    display: flex;
    height: 475px;
    align-items: center;
    justify-content: center;
    gap: 80px;
    
}
.title {
    font-size: 48px;
    font-weight: 900;
    color: #F9FAF8;
}

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

button {
    background-color: #3883F6;
    color: #F9FAF8;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 35px;
    margin-top: 10px;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: start;
    flex-basis: 420px;
}

.info-section {
    box-sizing: border-box;
    height: 520px;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    padding-top: 50px;
    gap: 50px;
}
.random {
    font-size: 36px;
    font-weight: 900;
    color: #1F2937;
}
.box {
    height: 160px;
    width: 160px;
    border: 4px solid #3883F6;
    border-radius: 10px;
}

.info-text {
    color: #1F2937;
    text-align: center;

}

.subtext {
    display: flex;
    justify-content: center;
    gap: 50px;

}
.item {
    width: 160px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.quote-section {
    background-color: #E5E7EB;
    height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.quote {
    font-size: 36px;
    font-weight: 300;
    color: #1F2937;
    width: 800px;
    
}

.author {
    color: #1F2937;
    font-weight: bold;
    font-size: 20px;
    align-self: self-end;
    margin-right: 300px;
}

.signup-box {
    height: 370px;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.signup {
    background-color: #3883F6;
    display: flex;
    height: 150px;
    width: 800px;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    gap: 60px;
}
.signup-head {
    color: white;
    font-size: 20px;
    font-weight: bold;
}
.signup-info {
    color: white;
}
.signup-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.signup-button {
    border: 2px solid white;
}

.footer {
    background-color: #1F2937;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer-text {
    color: white;

}