@import url('https://fonts.googleapis.com/css2?family=Baloo+2&display=swap');

*, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    color: black;
    font-family: 'Baloo 2';
}

nav {
    height: 80px;
    background-color: #ABEDD8;
}

.center {
    max-width: calc(100% - 2rem);
    width: 72rem;
    height: 100%;
    margin: 0 auto;
}

nav > .list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-transform: capitalize; 
}

.logo {
    display: block;
    width: 70px;
    height: 70px;
}

nav > .list > a {
    font-weight: 600;
}

main {
    height: 900px;
    padding: 2rem 0;
}