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

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'roboto', sans-serif;
}

nav.navbar,
header.header,
footer {
    background-color: #1f2937;
    color: #fff;
}

.navbar {
    padding: 20px;
}

.navbar .container {
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    flex: 1 1 100%;
    gap: 10px;
    flex-wrap: wrap;
}

ul {
    list-style-type: none;
    display: flex;
    gap: 15px;
    /* flex-wrap: wrap; */
}

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

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

.header {
    margin: auto;
    padding: 0 20px 80px;
}

.header .container {
    margin: auto;
    display: flex;
    max-width: 1000px;
    justify-content: space-between;
    align-items: center;
    padding: 80px 0;
    gap: 10px;
    /* flex-wrap: wrap; */
}

.hero {
    max-width: 400px;
}

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

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

.hero button {
    background-color: #3882F6;
    color: #E5E7EB;
    font-weight: bold;
    padding: 5px 25px;
    border-radius: 8px;
    border-style: none;
    margin-top: 10px;
    font-size: 18px;
}

.header .container img {
    max-width: 400px;
    border-radius: 8px;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.6);
}

.boxes {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 50px 20px 80px;
    gap: 50px;
}

.boxes h2 {
    font-size: 36px;
    color: #1f2937;
}

.boxes .container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.box {
    max-width: 200px;
    font-size: 16px;
}

.box img {
    max-width: 200px;
    border-radius: 8px;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.6);
    margin-bottom: 10px;
}

blockquote {
    background-color: #E5E7EB;
    padding: 80px 20px;
}

blockquote .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    max-width: 800px;
    margin: auto;
}

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

.sign-name {
    align-self: flex-end;
    font-size: 18px;
    font-weight: bold;
}

.sign-up {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 50px;
}

.sign-up .container {
    max-width: 1000px;
    padding: 50px 100px;
    background-color: #568ee8;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    flex: 1;
    color: #fff;
}

.content h3 {
    font-size: 20px;
    font-weight: bold;
}

.content p {
    font-size: 16px;
}

.sign-up button {
    padding: 5px 30px;
    border: 2px solid #fff;
    border-radius: 3px;
    background-color: #568ee8;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
}

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}