41 lines
782 B
CSS
41 lines
782 B
CSS
body, html{
|
|
height:100%;
|
|
margin: 0px 0px 0px 0px;
|
|
display:flex;
|
|
justify-content: center;
|
|
flex-direction: column;
|
|
font-family:'Inter', sans-serif;
|
|
}
|
|
|
|
.top-menu a{
|
|
text-decoration: none;
|
|
margin-right: 2rem;
|
|
color:black;
|
|
}
|
|
|
|
.top-menu{
|
|
display: flex;
|
|
flex-direction: row;
|
|
height: 5%;
|
|
justify-content:flex-end;
|
|
align-items: center;
|
|
background-color:lightgray;
|
|
margin-bottom:5px;
|
|
border: grey solid;
|
|
border-width: 0px 2px 2px 2px;
|
|
}
|
|
|
|
|
|
.footer{
|
|
display:flex;
|
|
flex-direction: row;
|
|
justify-content: center;
|
|
align-items: center;
|
|
margin-top: 5px;
|
|
background-color: lightgray;
|
|
border: grey solid;
|
|
border-width: 2px 2px 0px 2px;
|
|
justify-content: space-evenly;
|
|
align-items: center;
|
|
}
|