/* MAIN SETTINGS FONTS/COLORS */
body {
    background-color: #1F2937;
    font-family: 'Roboto', sans-serif;
    display: flex;
    flex-direction: column;
}

.container {
    display: flex;
    flex:1;
    justify-content: center;
    gap: 450px;
}

ul {
    display: flex;
    list-style-type: none;
    gap: 10px;
    justify-content: space-between;
}

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

button {
    color: #F9FAF8;
    background-color: #3882F6;
    font-weight: 900;
    border-radius: 10px;
    padding: 10px;
    border: 2px solid white;
}
/* HEADER SECTION */

.header {
    background-color: #1F2937;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
}

.header p a{
    font-size: 24px;
    font-weight: 900;
    color: #F9FAF8;
    margin-left: 30px;
}

.header img {
    height: 30px;
    width: 30px;
    border-radius: 25%;
}

/* AWESOME WEBSITE SECTION */

.awesome-website {
    display: flex;
    background-color: #1F2937;
    color: #F9FAF8;
    margin-bottom: 50px;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.awesome-left {
    width: 30%
}

.awesome-right {
    display: flex;
    justify-content: center;
    align-items: center;
}


/* RANDOM INFO SECTION */

.random-info {
    background-color: #F9FAF8;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.random-info > p {
    font-size: 36px;
    color: #1F2937;
    font-weight: 900;
}

.random-info ul {
    display: flex;
    margin: 0 30px 0 30px;
    align-items: center;
    margin-bottom: 100px;
    gap: 30px;
    flex-wrap: wrap;
}

.image-caption {
    display: flex;
    width: 200px;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.random-info img {
    border: 5px solid #3882F6;
    border-radius: 8px;
    height: 150px;
    width: 150px;
}

/* QUOTE SECTION */

.quote-section {
    background-color: #E5E7EB;
    font-size: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.quote-section .quote {
    font-style: italic;
    margin-left: 210px;
    margin-right: 210px;
}

.quote-section .author {
    font-size: 18px;
    text-align: end;
    margin-right: 210px;
}



/* CALL TO ACTION SECTION */ 

.call-to-action {
    background-color: #F9FAF8;
    display: flex;
    justify-content: center;
}

.call-to-action .banner {
    color: #F9FAF8;
    display: flex;
    border-radius: 10px;
    background-color: #3882F6;
    align-items: center;
    gap: 90px;
    /* margin: 18px; */
    margin-top: 40px;
    margin-bottom: 40px;
    padding: 8px 20px;

}

.call-to-action .banner button {
    display: flex;
    align-items: center;
}
/* FOOTER */

.footer {
    display: flex;
    color: #F9FAF8;
    justify-content: center;
}

/* BUTTON LINK */
.button-link {
  display: inline-block;
  padding: 8px 16px;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 4px;
}
.button-link:hover {
  background-color: #0056b3;
}