@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

:root {
    --red: rgb(252, 57, 82);
    --grey: rgba(0, 0, 0, 0.54);
    --white: rgb(255, 255, 255);
    --black: rgba(0, 0, 0, 0.87);
    --light-grey: rgb(196, 196, 196);
    --light-black: rgba(0, 0, 0, 0.25);
    --lighter-black: rgba(0, 0, 0, 0.12);
    --lighter-grey: rgb(196, 196, 196, 0.2);
}


* {
    margin: 0;
    padding: 0;
}

body {
    font-weight: 400;
    font-family: "Roboto", sans-serif;
    background-color: var(--lighter-grey);
}


/* Header */

header nav {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--black);
    box-shadow: 0px 4px 4px var(--light-black);
}

header a {
    color: unset;
    text-decoration: none;
}

.navigation {
    border: 0;
    margin: 0 20px;
    font-size: 20px;
    cursor: pointer;
    color: var(--white);
    background: transparent;
}

#title {
    display: flex;
    font-size: 10px;
    font-weight: 500;
    color: var(--red);
    text-transform: uppercase;
}

#title img {
    width: 20px;
    margin: 0 20px;
}

#spacer {
    display: hidden;
}


/* Footer */

footer {
    width: 100%;
    height: 120px;
    display:table;
    line-height: 100%;
    text-align: center;
    color: var(--white);
    background-color: var(--black);
}

footer p {
    line-height: 30px;
    display:table-cell;
    vertical-align:middle;
}

footer strong {
    font-weight: 500;
}
