@import url('https://fonts.googleapis.com/css2?family=Crimson+Pro:wght@400;700&display=swap');

body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Crimson Pro', serif;
    background: #283618;
    color: #fefae0;
}

.panel {
    width: min(700px, calc(100% - 44px));
    padding: 50px;
    border: 2px solid #fefae0;
    border-radius: 22px;
    background: #3a4a22;
}

h1 {
    margin: 0 0 16px;
    font-size: clamp(3rem, 8vw, 5.8rem);
}

p {
    font-size: 1.35rem;
    line-height: 1.6;
}

a {
    display: inline-block;
    margin-top: 18px;
    padding: 13px 21px;
    border-radius: 999px;
    color: #283618;
    background: #fefae0;
    text-decoration: none;
    font-weight: 700;
}
