:root {
    /* colors */
    --gg-background: #d7c6bd;
    --gg-black: #0b0b0c;
    --gg-red: #d4211b;
}

@font-face {
    font-family: Lato;
    src: url('https://legrandguignol.neocities.org/resources/fonts/Lato-Regular.ttf');
}

@font-face {
    font-family: Lato;
    src: url('https://legrandguignol.neocities.org/resources/fonts/Lato-Bold.ttf');
    font-weight: bold;
}

@font-face {
    font-family: Lato;
    src: url('https://legrandguignol.neocities.org/resources/fonts/Lato-Italic.ttf');
    font-style: italic;
}

@font-face {
    font-family: Lato;
    src: url('https://legrandguignol.neocities.org/resources/fonts/Lato-BoldItalic.ttf');
    font-style: italic;
    font-weight: bold;
}

@font-face {
    font-family: Lato;
    src: url('https://legrandguignol.neocities.org/resources/fonts/Lato-Black.ttf');
    font-weight: 900;
}

body {
    font-family: 'Lato', sans-serif;
    margin: 0;
    background-color: var(--gg-background);
    color: var(--gg-black);
}

* {
    box-sizing: border-box;
}

a,
.red-text {
    color: var(--gg-red);
}

.container {
    max-width: 900px;
    margin: 0 auto;
}

.main-header {
    grid-area: header;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
    width: 100%;
}

.main-header .tagline {
    font-size: 25px;
    margin-bottom: -15px;
}

.main-header h1 {
    font-size: 80px;
    margin: 0;
}

.main-nav {
    grid-area: nav;
}

.main-nav ul {
    display: flex;
    padding-left: 0;
    padding-top: 10px;
    margin: 0;
    list-style-type: none;
    justify-content: space-evenly;
}

.main-nav li a {
    color: var(--gg-red);
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
}

.main-nav li a:hover {
    color: var(--gg-black);
}

.flex-list {
  display: flex;
  list-style-type: none;
  justify-content: space-between;
  width: 60%;
  padding-left: 0;
}

.main-footer {
    grid-area: footer;
    height: 40px;
    padding: 10px;
    text-align: center;
    width: 100%;

}