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

body {
    font-family: Roboto;
    margin: 0;
    padding: 0;
}

button {
    width: 100px;
    height: 30px;
    border-radius: 10px;
    margin: 10px 0;
    border-style: solid;
    color: #f9faf8;
    font-weight: bold;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

header {
    background-color: #1f2937;
    color: #e5e7eb;
    font-size: 16px;
    padding: 20px 0 60px 0;
}

/* hero-area-section */
.hero-area-section {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

nav ul {
    display: flex;
    justify-content: space-between;
    gap: 20px;

}

.logo {
    font-size: 24px;
    color: #f9faf8;
    font-weight: 600;
}

nav a {
    text-decoration: none;
    color: #e5e7eb;
}

nav, .logo {
    margin-bottom: 60px;
}

.hero-main-text {
    font-size: 48px;
    font-weight: 900;
    color: #f9faf8;
}

.hero-secondary-text, .call-to-action-secondarytext {
    color: #e5e7eb;
    font-size: 18px;
}

.hero-area-section button {
    border-color: #3882F6;
    box-shadow: none;
}

.hero-area-section button {
    background-color: #3882F6;
}

.hero-area-section .left {
    flex-basis: 500px;
}

.hero-area-section .right img {
    background-color: beige;
    width: 400px;
    height: 200px;
    object-fit: cover;
}



/* random-information-section */
.random-information-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 20px 0 80px 0;
}

.random-information-header {
    font-size: 36px;
    color: #1f2937;
    font-weight: 900;
}

.random-information-section ul {
    display: flex;
    gap: 40px;    
}

.random-information-section ul li {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-basis: 150px;
    gap: 10px;
}

.random-information-section ul img {
    width: 100%;
    height: 150px;
    border: 3px solid #3882F6;
    border-radius: 10px;
    object-fit: cover;
}

/* quote-section  */
.quote-section {
    background-color: #e5e7eb;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 0;
}

.quote-container {
    display: flex;
    flex-direction: column;
    max-width: 700px;
}

.quote-header-text {
    font-size: 36px;
    font-style: italic;
    font-weight: 300;
    color: #1f2937;  
}

.quote-header-text-author {
    align-self:self-end;
    font-weight: bold;
    margin-top: 20px;

}

/* call-to-action-section */

.call-to-action-box {
    background-color: #3882F6;
    display: flex;
    flex-direction: row;
    height: 100px;
    flex-basis: 600px;
    padding: 35px;
    border-radius: 10px;
    justify-content: center;
    align-items: center;
}

.call-to-action-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px;
}

.call-to-action-headertext {
    color: #f9faf8;
    font-weight: 900;
    font-size: 20px;
    flex-basis: 3;
}

.call-to-action-box button{
    border-color: #f9faf8;
    background-color: transparent;
    border-style: solid;
    color: #f9faf8;
    flex-basis: 1;
}
/* footer */
footer {
    background-color: #1f2937;
    color: #e5e7eb;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 68px;
    
}