*{
    box-sizing: border-box;
}

body{
    font-family: Roboto, sans-serif;
    padding: 0 32px;
}

body.dark{
    background-color: rgb(22, 21, 21);
    color: rgb(219, 219, 219);
}
h1{
    margin-bottom:48px;
}
.container{
    height: 80px;
    display: flex;
    justify-content: center;
    border: 1px solid blue;
    margin-top: 16px;
    background-color: white;
    color: black;
}

.container.dark{
    background-color: rgb(22, 21, 21);
    color: rgb(219, 219, 219);
}