* {
    margin: 0;
    padding: 0;
    list-style: none;
    box-sizing: border-box;
    text-decoration: none;
}

/* Variables */
:root {

    /* Colors */
    --color-a: #3A3D59;
    --color-b: #A9EB00;
    --color-c: #fff;
   
    /* Default Font */
    --default-font: "Inter", sans-serif;

}

/* Core */
html {
    scroll-behavior: smooth;
}

body {
    color: var(--color-a);
    font-family: var(--default-font);
    font-weight: 400;
    text-align: center;
    /* padding-top: 120px; */
    font-size: 18px;
    background-color: var(--color-c);
}

h2 {
    font-size: 24px;
    font-weight: 400;
    margin-top: 60px;
}

a {
    transition: 0.3s;
    text-decoration: none;
    display: block;
    line-height: 180%;
}

a:hover {
    transition: 0.3s;
    text-decoration: none;
}

img {
    max-width: 100%;
}

::selection {
    background: var(--color-b);
}

.logo {
    width: 380px;
    margin-bottom: 20px;
    display: block;
    margin: 0 auto;
}

.btn-whatsapp  {
    display: inline-block;
    font-size: 18px;
    background-color: #49C857;
    color: #fff;
    padding: 10px 32px 10px 54px;
    border-radius: 32px;
    background-image: url(../img/whatsapp.svg);
    margin-top: 52px;
    background-repeat: no-repeat;
    background-position-y: 14px;
    background-position-x: 20px;
    box-shadow: 0px 16px 26px 0px rgba(61, 74, 67, 0.25);
}

.btn-whatsapp:hover  {
    background-color: #4bd65b;
    box-shadow: 0px 22px 26px 0px rgba(61, 74, 67, 0.25);
}