44 lines
803 B
CSS
44 lines
803 B
CSS
@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;700&display=swap');
|
|
|
|
body {
|
|
font-family: 'Lora', serif;
|
|
background-color: #fbfbfb;
|
|
color: #383a42;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100vh;
|
|
margin: 0;
|
|
}
|
|
|
|
.card {
|
|
background-color: #fff;
|
|
border-radius: 8px;
|
|
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
|
|
padding: 20px;
|
|
width: 90%;
|
|
max-width: 400px;
|
|
text-align: center;
|
|
}
|
|
|
|
button {
|
|
background-color: #61afef;
|
|
color: #fff;
|
|
border: none;
|
|
padding: 10px 20px;
|
|
border-radius: 5px;
|
|
cursor: pointer;
|
|
font-size: 16px;
|
|
transition: background-color 0.3s;
|
|
}
|
|
|
|
button:hover {
|
|
background-color: #528bca;
|
|
}
|
|
|
|
@media (max-width: 600px) {
|
|
.card {
|
|
width: 80%;
|
|
}
|
|
}
|