body {
    font-family: roboto, 'Brush Script MT', garamond;
}

.header {
    color: #E5E7EB;
    background-color: #1F2937;
    padding: 20px 10% 100px;
    font-size: 18px;
    display: flex;
    flex-direction: column;
    gap:30px;
}

.top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.title-info {
    padding-right: 40px;
    flex: 1;
}

.logo {
    font-size: 24px;
    color: #F9FAF8;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 25px;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: lightgray;
}

.title {
    font-size: 48px;
    color: #F9FAF8;
    font-weight: 800;
    margin: 0;
}

.title-info .description {
    margin: 0;
}

button {
   margin: 15px 0;
   padding: 8px 20px; 
   color: white;
   background-color: #3882F6;
   border: none;
   border-radius: 5px;
   font-weight: bolder;
   cursor: pointer;
   display: flex;
   align-items: center;
   gap: 6px;
}

.main-image {
    width: 300px;
    border-radius: 10px;
}

.content {
    font-size: 18px;
    padding: 50px 10%;
    display: flex;
    flex-direction: column;  
    gap: 50px;
}

.content-title {
    font-size: 36px;
    color: #1F2937;
    font-weight: 900;
    text-align: center;
}

.content-wrapper{
    display: flex;
    flex-wrap: wrap;
    gap: 15px
}

.part {
    display: flex;
    flex-direction: column;
    flex: 50px;
    align-items: center;
}

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

.content-wrapper .description {
    font-size: 25px;
}

.quote {
    background-color: #E5E7EB;
    padding: 50px 27%;
}

.quote-text {
    font-size: 25px;
    font-weight: 300px;
    font-style: italic;
}

.quote-author {
    font-size: 20px;
    font-weight: bold;
    text-align: right;
}

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

.box {
    min-width: 600px;
    margin: 80px 22%;
    flex: 1;
    padding: 20px 40px;
    color: white;
    background-color: #3882F6;
    font-size: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    border-radius: 10px;
}

.box-text {
    flex: 1;
    max-width: 700px;
}

.text-a {
    font-size: 24px;
}

.box button {
    border: 2px solid white;
}

.footer {
    color: #E5E7EB;
    background-color: #1F2937;
    padding: 30px;
    font-size: 18px;
    text-align: center;
}