29 lines
289 B
CSS
29 lines
289 B
CSS
html {
|
|
overflow-x: hidden;
|
|
overflow-y: hidden;
|
|
}
|
|
|
|
header {
|
|
height: 5vh;
|
|
}
|
|
|
|
section {
|
|
height: 75vh;
|
|
}
|
|
|
|
.SmallButton {
|
|
margin-top: 30px;
|
|
|
|
border-style: solid;
|
|
border-width: 1px;
|
|
|
|
width: 100px;
|
|
height: 100px;
|
|
}
|
|
|
|
footer {
|
|
display: flex;
|
|
justify-content: center;
|
|
|
|
height: 5vh;
|
|
}
|