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

html {
    scroll-behavior: smooth;
}

image {
    max-width: 100%;
    width: 100%;
}

.container {
    width: 100%;
    margin: 0 auto;
}

.wrapper_header {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
}

.wrapper_content {
    max-width: 1920px;
    width: 100%;
    margin: 0 auto;
}

button {
    font-weight: bold;
    text-transform: uppercase;
    color: white;
    background-color: var(--lightBlue);
    padding: 1em 2em;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: var(--smooth);
}

button:hover {
    color: var(--lightBlue);
    background-color: var(--darkBlue);
    transition: var(--smooth);
}

p {
    line-height: 40px;
}

@media (min-width: 62em) {
    .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

:root {
    --white: #f4f4f4;
    --darkBlue: #1A66FF;
    --lightBlue: #99bbff;
    --smooth: all .3s ease-in;
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    background: var(--lightBlue);
}