body {
    display: flex;
    flex-direction: column;
    margin: 0;
    font-family: "Roboto", sans-serif;
}

.header {
    background-color: #1F2937;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
}

.logo {
    font-family: "Roboto", sans-serif;
    font-size: 24px;
}

ul {
    display: flex;
    gap: 10px;
    list-style-type: none;
}

a {
  color: white;
  text-decoration: none; /* no underline */
}


.placeholder {
    display: flex;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 130px;
    padding-bottom: 130px;
    background-color: #1F2937;
    justify-content: space-between;
}

.group-title {
    font-size: 48px;
    color: #F9FAF8;
    font-weight: 900;
}

.group-desc {
    color: #E5E7EB;
    font-size: 18px;
}

.group-button {
    color: white;
    width: 100px;
    height: 30px;
    background-color: #3882F6;
    border: 0;
    border-radius: 6px;
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 8px;
    padding-top: 8px;
}

.group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}



.cards {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 128px;
    gap: 36px;
}

.cards-title {
    font-size: 36px;
    color: #1F2937;
    font-weight: 900;
}

.cards-con {
    display: flex;
    gap: 64px;
}

.item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
    width: 150px;
    height: 150px;
}

#card-1, #card-2, #card-3, #card-4 {
    width: 150px;
    height: 150px;
    border: 5px solid #3882F6;
    border-radius: 6px;
}



.qoute {
    background-color: #E5E7EB;
    padding: 128px;
}

.qoute-text {
    color: #1F2937;
    font-size: 36px;
    font-style: italic;
}

.author {
    text-align: end;
    font-size: 36px;
    font-weight: bold;
}


.banner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 36px;
    margin: 36px;
    background-color: #3882F6;
    border-radius: 10px;
}


.banner-title {
    font-size: 36px;
    font-weight: bold;
    color: white;
}

.banner-desc {
    color: #E5E7EB;
}

.sign-up {
    font-size: large;
    font-weight: bold;
    color: white;
    background-color: #3882F6;
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 4px;
    padding-bottom: 4px;
    border: 3px solid #fcfcfc;
    border-radius: 6px;
}




.footer {
    padding: 26px;
    text-align: center;
    background-color: #E5E7EE;
}