
/*reset css*/
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
body { line-height: 1.5; -webkit-font-smoothing: antialiased; }
img, video, svg { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; }
/*real styles*/

.success-body {
    display: flex;
    height: 100vh;
    color: #E9ECEF;
    font-family: "Lato", sans-serif;
    background-color: #121417;
    align-items: center;
    justify-content: center;
    padding: 2rem 3rem;
}
img {
    height: 16rem;
}
h1 {
    font-size: clamp(1.5rem, 3.5vw, 2.75rem);
    text-align: center;
}
p {
    font-size: clamp(1rem, 2vw, 2rem);
    text-align: center;
}
a, a:focus, a:hover {
    display:block;
    font-size: clamp(1.75rem, 4vw, 3rem);
    background-color: #0a801b;
    color: inherit;
    text-decoration: none; /* remove underline */
    cursor: pointer;       /* optional: makes it feel clickable */
    padding: 0 .75rem;
    border-radius: .4rem;
    margin: .5rem 0 2rem;
}
.center-vertically {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}
.hidden {
    display: none;
}