@charset "UTF-8";

*{
    padding: 0;
    margin: 0;
}
@import url('https://fonts.googleapis.com/css2?family=Cookie&family=Neuton:ital,wght@0,200;0,300;0,400;0,700;0,800;1,400&display=swap');

.cookie-regular {
  font-family: "Cookie";
  font-weight: 150;
  font-style: normal;
}
.neuton-regular {
  font-family: "Neuton", serif;
  font-weight: 200;
  font-style: normal;
}

:root {
    --fonte01:"Neuton";
    --fonte02:"Cookie";
}

html, body{
    font-family: var(--fonte01);
    min-height: 100vh;
    background-color: darkgray;
}
p{
    font-family: var(--fonte02);
    font-size: 5vw;
    text-align: justify;
}

