39 lines
732 B
CSS
39 lines
732 B
CSS
:root {
|
|
--main-color: #EFB6C8;
|
|
--background-color: #8174A0;
|
|
--text-color: #FFD2A0;
|
|
--button-text-color: #FFE8CE;
|
|
--special: #A888B5;
|
|
}
|
|
|
|
body {
|
|
background-color: var(--background-color);
|
|
color: var(--text-color) !important;
|
|
font-family: 'Montserrat', sans-serif;
|
|
text-decoration: none !important;
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
color: var(--special);
|
|
}
|
|
|
|
.button {
|
|
display: inline-block;
|
|
padding: 1rem 2rem;
|
|
color: var(--button-text-color);
|
|
background-color: var(--main-color);
|
|
border-radius: 5px;
|
|
border: 2px solid var(--special);
|
|
font-weight: bold;
|
|
transform: translateY(0);
|
|
transition: transform 0.5s ease;
|
|
}
|
|
|
|
.button:hover {
|
|
transform: translateY(-10px);
|
|
}
|
|
|
|
small {
|
|
font-size: 0.5rem;
|
|
}
|