* {
    box-sizing: border-box;
}
body {
    background-image: linear-gradient(to bottom, rgb(69, 162, 255), white);
    font-family: Helvetica, sans-serif;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}


nav {
    padding: 20px;
    margin: auto;
    text-align: center;
}

nav ul {
    display: flex;
    padding: 0;
    margin: 20px auto;
    list-style-type: none;
    justify-content: center;
    gap: 10px;
}

nav a {
    display: block;
    color: black;
    width: 100px;
    background-color: aliceblue;
    padding: 10px;
    text-decoration: none;
    border-radius: 10px;
}

nav a:hover {
    font-style: italic;
    background-color: lightblue;
}

nav .unavailable:hover {
    font-style: italic;
    background-color: rgb(252, 74, 74);
}

.container {
    width: 1200px;
    display: grid;
    grid-template-areas:
    "header header header"
    "sidebar--left center sidebar--right";
    gap: 1em;
    justify-content: center;
    justify-items: center;
    align-items: center;
}

.center {
    display: block;
    width: 500px;
    margin: 0 auto;
}

.sidebar {
    display: flex;
    flex-direction: column;
}


.updates, .goals, .test {
    scrollbar-width: none;
    overflow: auto;
    margin: 10px;
    padding: 20px;
    border: 1px solid black;
    border-radius: 20% 5% 20% 5%;
    width:250px;
    height: 200px;
}

.updates p, .goals p {
    display: list-item;
    margin: 0 0 0 1em;
    padding: 0.25em;
}