*{
    box-sizing: border-box;
}
:root{
    --color-purple: #80298f;
    --color-pink: #ec297b;
    --color-text: #393939;
    --color-grey: #808080;
}

body{
    margin: 0;
    font-family: 'ubuntu',Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-text);
}
/* Typography */

h1 {
    color: var(--color-purple);
    font-size: 2rem;
    font-weight: bold;
}
h2 {
    color: var(--color-purple);
    font-size: 1.5rem;
    font-weight: bold;
}

/* blocks */
.logo {
    height: 100px;
    padding-left: 1em;
}

header {
    background-color: var(--color-purple);
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

nav {
    display: flex;
    justify-content: space-between;
}

nav a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    padding: 0 1em;
    border-right: 1px solid white;
    letter-spacing: 1px;
}
nav a:last-child {
    border-right: 0;
}
footer {
    background-color: var(--color-purple);
    color: white;
    text-align: center;
    font-weight: bold;
    font-size: .7rem;
    letter-spacing: 1px;
}

.container {
    display: grid;
    align-items: start;
    grid-template-rows: auto 1fr auto;
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
    min-height: 100vh;
}

.color-grid {
    display: grid;
    grid-template-columns: repeat(10, 50px);
    grid-template-rows: repeat(7, 50px);
    gap: 2em;
}
.color {
    border-radius: 5px;
    
}
main {
    display: flex;
    justify-content: center;
    margin-top: 2em;
}