60 lines
1.2 KiB
CSS
60 lines
1.2 KiB
CSS
body {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
background-color: black;
|
|
height: 95vh;
|
|
}
|
|
|
|
header {
|
|
color: #BF0909;
|
|
font-family: 'Special Elite', cursive;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
flex: 1;
|
|
}
|
|
|
|
header a {
|
|
text-decoration: none;
|
|
color: #BF0909;
|
|
}
|
|
|
|
header a:hover {
|
|
color: white;
|
|
}
|
|
|
|
#main {
|
|
display: flex;
|
|
flex: 4;
|
|
}
|
|
|
|
#content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-around;
|
|
width: 50vw;
|
|
}
|
|
|
|
#text {
|
|
font-family: 'Special Elite', cursive;
|
|
font-size: 2vw;
|
|
text-align: center;
|
|
color: white;
|
|
}
|
|
|
|
#buttons {
|
|
color: red;
|
|
display: flex;
|
|
justify-content: space-around;
|
|
}
|
|
|
|
footer {
|
|
color: green;
|
|
display: flex;
|
|
flex : 1;
|
|
}
|
|
|
|
|