* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    background-color: #161a1d;
    font-family: 'Inter', sans-serif;
}

h1, h2, h3 {
    font-family: "Bebas Neue", sans-serif;
    color: #fff;
}

h1 {
    font-size: 2.4rem;
}

p {
    color: #8c9cac;
    font-weight: 100;
    font-size: 2rem;
}

main {
    padding: 50px 0px;
}

a:link {
    color: #e9373a;
}


/***********************************************************************************************************************

CONTAINER

************************************************************************************************************************/

.container {
    width: 90%;
    margin: 0 auto;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}