19 lines
322 B
CSS
19 lines
322 B
CSS
.container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 100vh;
|
|
width: 100vw;
|
|
background-color: #05254a;
|
|
color: white;
|
|
}
|
|
|
|
.navLink {
|
|
text-decoration: none;
|
|
color: #64adac;
|
|
font-weight: bold;
|
|
cursor: pointer;
|
|
display: flex;
|
|
align-items: center;
|
|
} |