25 lines
367 B
CSS
25 lines
367 B
CSS
body {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100vh;
|
|
margin: 0;
|
|
background-color: #f9e3e3;
|
|
font-family: 'Arial', sans-serif;
|
|
}
|
|
|
|
.container {
|
|
text-align: center;
|
|
}
|
|
|
|
.header_text {
|
|
font-size: 3em;
|
|
color: #d32f2f;
|
|
}
|
|
|
|
.gif_container img {
|
|
width: 100%;
|
|
max-width: 500px;
|
|
height: auto;
|
|
}
|