*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: 'Roboto', sans-serif;
}


.header {
    width: 100vw;
    height: 6rem;
    -webkit-box-shadow: 0px 2px 22px -6px rgba(189,189,189,1);
    -moz-box-shadow: 0px 2px 22px -6px rgba(189,189,189,1);
    box-shadow: 0px 2px 22px -6px rgb(218, 218, 218);
}

.header nav {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header nav a {
    margin-right: 2.5rem;
    color: rgb(50, 50, 50);
    cursor: pointer;
    text-decoration: unset;
}

.header nav a:last-child {
    margin-right: 0;
}


.footer {
    width: 100vw;
    height: 6rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: .01rem solid rgb(152, 152, 152);
    margin-top: 2rem;
}

.footer p {
    font-size: small
}

.padding {
    padding: 0 10rem;
}