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

:root {
    --color-purple: #6C63FF;
    --color-purple-light: #D7D4FF;
    --color-white: #FFFFFF;
    --color-white-200: #F9F9F9;
    --color-gray: #555555;
    --color-gray-dark: #2B2B2B;
}

body {
    height: 100vh;
    font-family: 'Lato', Arial, Helvetica, sans-serif;
    font-weight: 400;
    color: var(--color-gray);
}

h1, h2, h3 {
    font-family: 'Merriweather', Arial, Helvetica, sans-serif;
    color: var(--color-gray-dark);
}

h1 {
    font-size: 2.2rem;
    font-weight: 400;
}

h2 {
    font-size: 1.5rem;
    font-weight: 700;
}

p {
    font-size: 1.1rem;
    line-height: 2rem;
}

button {
    width: fit-content;
    background-color: var(--color-purple);
    border: none;
    border-radius: 5px;
    padding: 0.7rem 3rem;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-white);
    cursor: pointer;
    box-shadow: 0px 5px 5px 0px #1717171A;
}

section#banner {
    background-color: var(--color-purple-light);
    padding: 4rem 5rem 6rem 6rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

div#banner-infos {
    width: 22.5rem;
    padding-top: 6rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

section#cards {
    width: 100%;
    padding: 8rem 5rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5rem 7rem;
}

section#cards div.card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

section#cards div.square-color {
    width: 100%;
    height: 12rem;
}

section#cards div.texts {
    padding: 1rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

div#card-red div.square-color {
    background-color: #FF6363;
}

div#card-blue div.square-color {
    background-color: #63ECFF;
}

div#card-pink div.square-color {
    background-color: #F363FF;
}

div#card-green div.square-color {
    background-color: #63FF73;
}

div#card-yellow div.square-color {
    background-color: #FFDD63;
}

div#card-purple div.square-color {
    background-color: #6663FF;
}

section#form {
    background-color: var(--color-purple-light);
    padding: 5rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}
