35 lines
776 B
CSS
35 lines
776 B
CSS
|
@import url('https://fonts.googleapis.com/css2?family=Silkscreen:wght@400;700&display=swap');
|
||
|
@import url('https://fonts.googleapis.com/css2?family=Dhurjati&display=swap');
|
||
|
|
||
|
body {
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
flex-direction: column;
|
||
|
min-height: 100vh;
|
||
|
background: linear-gradient(#e66465, #9198e5);
|
||
|
}
|
||
|
|
||
|
.content {
|
||
|
border: 4px black solid;
|
||
|
border-radius: 10px;
|
||
|
padding: 1.3rem;
|
||
|
}
|
||
|
|
||
|
button {
|
||
|
font-size: 2rem;
|
||
|
cursor: pointer;
|
||
|
border: 2px black solid;
|
||
|
font-family: "Silkscreen";
|
||
|
border-radius: 20px;
|
||
|
}
|
||
|
|
||
|
.response {
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
margin-top: 10px;
|
||
|
border: 4px black solid;
|
||
|
font-family: "Dhurjati";
|
||
|
font-size: 1.5rem;
|
||
|
}
|