2024-01-07 00:24:35 +01:00
|
|
|
body{
|
|
|
|
min-height: 100vh;
|
|
|
|
margin:0;
|
2023-12-06 18:12:31 +01:00
|
|
|
display:flex;
|
|
|
|
justify-content: center;
|
|
|
|
flex-direction: column;
|
|
|
|
font-family:'Inter', sans-serif;
|
2023-12-23 17:01:39 +01:00
|
|
|
overflow-x:hidden
|
2023-12-06 18:12:31 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.top-menu a{
|
|
|
|
text-decoration: none;
|
|
|
|
margin-right: 2rem;
|
|
|
|
color:black;
|
|
|
|
}
|
|
|
|
|
|
|
|
.top-menu{
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
2023-12-23 17:01:39 +01:00
|
|
|
position: fixed;
|
|
|
|
top:0;
|
|
|
|
width: 100%;
|
2023-12-06 18:12:31 +01:00
|
|
|
justify-content:flex-end;
|
|
|
|
align-items: center;
|
|
|
|
background-color:lightgray;
|
2023-12-19 17:33:46 +01:00
|
|
|
height: 45px;
|
2023-12-06 18:12:31 +01:00
|
|
|
border: grey solid;
|
|
|
|
border-width: 0px 2px 2px 2px;
|
2023-12-19 17:33:46 +01:00
|
|
|
transition: top 0.3s;
|
2023-12-06 18:12:31 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.footer{
|
|
|
|
display:flex;
|
2023-12-23 17:01:39 +01:00
|
|
|
width: 100%;
|
2023-12-06 18:12:31 +01:00
|
|
|
flex-direction: row;
|
|
|
|
background-color: lightgray;
|
|
|
|
border: grey solid;
|
|
|
|
border-width: 2px 2px 0px 2px;
|
|
|
|
justify-content: space-evenly;
|
|
|
|
align-items: center;
|
|
|
|
}
|
2024-01-07 00:24:35 +01:00
|
|
|
|
|
|
|
.root{
|
|
|
|
padding:60px 0px 20px 0px;
|
|
|
|
flex:1;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: stretch;
|
|
|
|
}
|