31 lines
472 B
CSS
31 lines
472 B
CSS
h1, h2, h3{
|
|
text-align: center;
|
|
}
|
|
|
|
p {
|
|
text-align: left;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
body {
|
|
background-color: rebeccapurple;
|
|
}
|
|
|
|
.home-button {
|
|
display: inline-block;
|
|
padding: 10px 20px;
|
|
background-color: #d9a2f3;
|
|
color: #060009;
|
|
text-decoration: none;
|
|
border-radius: 5px;
|
|
transition: background-color 0.3s;
|
|
margin-top: 200px;
|
|
margin-bottom: 100px;
|
|
|
|
}
|
|
|
|
.home-button:hover {
|
|
background-color: rgb(0, 0, 12);
|
|
color: #d9a2f3;
|
|
}
|