2023-04-11 10:29:21 +00:00
|
|
|
body {
|
|
|
|
background-color: #FCB0B3;
|
|
|
|
color: #25283D;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
height: 100vh;
|
|
|
|
width: 100vw;
|
|
|
|
margin: 0;
|
|
|
|
gap: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.link-wrapper {
|
|
|
|
background-color: #49DCB1;
|
|
|
|
padding: 1.5em;
|
|
|
|
border-radius: 1em;
|
|
|
|
border: 1px solid #25283D;
|
|
|
|
}
|
|
|
|
|
|
|
|
.return-button {
|
|
|
|
all: unset;
|
|
|
|
background-color: #49DCB1;
|
|
|
|
padding: 1em;
|
|
|
|
border-radius: 1em;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.return-button:hover {
|
|
|
|
filter: brightness(1.1);
|
|
|
|
}
|