@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

:root {
    --primary: #000; 
    --secundary: #fff;
    --secundaryHover: #ffffffb0;
    --dmSans: "DM Sans", sans-serif;
    --container: 1200px;
    --hoverFade: ease .3s;
    --warning: rgb(184, 13, 13);
    --warningHover: rgb(240, 0, 0);
}

* {
    margin: 0;
    padding: 0;
}

body {
    background: var(--primary);
    color: var(--secundary);
    font-family: var(--dmSans), sans-serif;
    padding: 0;
    margin: 0;
    display:flex;
    flex-wrap: wrap;
    justify-content: center;
}

.section {
    width: 100%;
    display:flex;
    flex-wrap: wrap;
    justify-content: center;
}

.container {
    width: var(--container);
}

.space {
    margin-right: 15px;
    margin-left: 15px;
}

a {
    text-decoration: none;
}

h1 {
    font-size: 40px;
    text-transform: uppercase;
    font-weight: 1000;
}

h2 {
    font-size: 30px;
    font-weight: 1000;
}

input[type="text"], input[type="password"] {
    border: 0;
    border-radius: 3px;
    padding: 15px 10px;
    width: calc(100% - 20px);
    margin: 10px 0;
    font-family: var(--dmSans);
    font-weight: 500;
}

input:focus {
    outline: 0;
}

ul {
    padding: 0;
    margin: 0;
}

li {
    list-style: none;
}

.button {
    border: 0;
    border-radius: 3px;
    padding: 15px 5px;
    font-family: var(--dmSans);
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
}

.primaryButton {
    width: 150px;
    margin: 10px 0;
    font-size: 14px;
    transition: ease .3s;
    background: #fff;
    color: #000;
    transition: var(--hoverFade);
}

.primaryButton:hover {
    opacity: .8;
}