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

* {
    font-family: Roboto, sans-serif, Arial;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    flex: 1;
    color: white;
}

.first-section,
.footer {
    background-color: #1f2937;
}

.header {
    display: flex;
    align-items: center;
    margin-bottom: 128px;
    gap: 32px
}

ul,
.head-paragraph {
    font-size: 18px;
    color: #E5E7EB;
}

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

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

.logo {
    font-size: 24px;
    color: #F9FAF8;
    font-weight: 900;
    margin-right: auto;
}

.first-section,
.second-section,
.three-section,
.four-section
{
    padding: 48px 0 48px 0;
}

.footer {
    padding: 16px 0 16px 0;
}

.first-section-container {
    margin: auto;
    width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.first-section {
    justify-content: center;
    padding-bottom: 160px;
}

.sign-up-container {
    display: flex;
    align-items: center;
    gap: 100px;
    overflow: hidden;
    justify-content: space-between;
}

.head-sign-up {
    font-size: 48px;
    font-weight: 900;
}

.sign-up-button {
    color: white;
    font-weight: 900;
    font-size: 16px;
    background-color: #3882F6;
    padding: 12px 16px;
    border-radius: 8px;
    border: none;
    width: 130px;
    cursor: pointer;
}

.sign-up {
    max-width: 440px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.image-placeholder {
    display: flex;
    justify-content: flex-end;
}

img {
    border-radius: 8px;
    max-width: 600px;
}

.second-section {
    display: flex;
    flex-direction: column;
    gap: 64px;
    color: #5e5e5e;
    text-align: center;
}

.some-info-text {
    font-size: 36px;
    font-weight: 900;
    color: #1F2937;
}

.card {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 200px;
    height: 400px;
}

.box {
    height: 200px;
    border: 4px solid darkblue;
    border-radius: 32px;
}

.content-container {
    display: flex;
    gap: 32px;
    align-items: center;
    justify-content: center;
}

.three-section {
    background-color: #E5E7EB;
    color: #1F2937;
    font-size: 36px;
    font-weight: lighter;
    font-style: italic;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.author {
    font-weight: normal;
    font-size: 28px;
    align-self: flex-end;
}

.three-container {
    flex: 0 1 200px;
    display: flex;
    width: 60%;
    justify-content: center;
    align-self: center;
    flex-direction: column
}

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

.sign-up-container-four {
    flex: 0 1 auto;
    border-radius: 8px;
    display: flex;
    gap: 32px;
    background-color: #3882F6;
    width: 700px;
    padding: 32px;
}

.border {
    border: 2px solid white;
}

.sign-up-bar {
    display: flex;
    margin-right: auto;
}

.bar-header {
    font-size: 24px;
    font-weight: 500;
}

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