:root {
    --primary-color: #34CB79;
    --title-color: #322153;
    --text-color: #6C6C80;
    --background-color: #F0F0F5;
  }

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

body {
    background: var(--background-color);
    -webkit-font-smoothing: antialiased;
    color: var(--text-color);
}

body, input, button {
    font-family: Roboto, Arial, Helvetica, sans-serif;
}

h1, h2, h3, h4, h5, h6, p {
    color: var(--title-color);
    font-family: Ubuntu;
}

.div-msg {
    margin-top: 20%;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-family: Roboto Mono;
    font-style: normal;
    font-weight: bold;
    font-size: 34px;
    line-height: 40px;
}

div.div-btn-social {
    margin-top: 100px;
    text-align: center;
}

div.div-btn-social a:not(:last-child) {
    margin-right: 50px;
}

