h1{
    text-align: center;
}


.content:hover{
    transition: all 1s;
    padding: 7vh;
    border-width: 0.4vh;
    cursor: pointer;
}

footer{
    grid-area: footer;
    color: gray;
    text-align: center;
}

.content{
    transition: all 1s;
    text-align: center;
    background-color: lightblue;
    border-radius: 20%;
    border-style: solid;
    border-width: 0.1vh;
    padding: 5vh;
    margin-left: 20vh;
    margin-right: 20vh;
}

aside{
    grid-area: aside;
}

#about{
    grid-area: about;
}
#weeks{
    grid-area: week;
}

#FP{
    grid-area: final;
}

.up{
    opacity: 0;
    display: none;
}


body{
    background-color: white;
}

header{
    border-style: none none solid none;
    border-color: aquamarine;
    grid-area: header;
}

#container{
    display: grid;
    grid-template-areas: 
    "header header header"
    "week week week"
    "final final final"
    "about about about"
    "footer footer footer" ;
    grid-template-columns: 1fr 3fr 3fr;
    gap: 5vh;
    padding: 2vh;
}