/*reset*/
*, *::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; }
/*style*/
body {
    font-family: Lato, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
    width: 100%;
}
main {
    width: 100%;
    padding: 3% 0 5% 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}
#paypal-button-container {
    width: 60%;
}
.cover {
    width: 90%;
    max-width: 400px;
}
h1 {
    font-size: clamp(1.5rem, 2.5vw, 2.5rem);
    text-align: center;
}
.flexy {
    width: 100%;
    padding: 0 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}
.terms-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex: 1;
}
label.terms-label {
    font-size: clamp(1rem, 2vw, 1.5rem);
    text-align: center;
}
input[type="checkbox"] {
    margin-right: 0.5rem;
    width: 1.25rem;
    height: 1.25rem;
}
@keyframes shake {
    0%   { transform: translate(0, 0); color: #f00;}
    8%  { transform: translate(-5px, 2px);}
    15%  { transform: translate(4px, -3px); }
    23%  { transform: translate(-3px, -2px); }
    30%  { transform: translate(5px, 1px); }
    38%  { transform: translate(-2px, 3px); }
    45%  { transform: translate(3px, -1px); }
    50% { transform: translate(0, 0);}
    100% {color:#700}
}

.shake {
    animation: shake 0.8s ease;
}
.hidden {
    display: none;
}
@media (min-width: 768px) {
    .flexy {
        flex-direction: row-reverse;
        justify-content: space-between;
    }
    .cover {
        width: 40%;
    }

}