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

body {
    margin: 0;
    min-height: 100vh;
    display: grid;
    place-items: center;
    font-family: 'Archivo', sans-serif;
    background: #f3ead7;
    color: #2b2117;
}

main {
    width: min(720px, calc(100% - 48px));
    padding: 48px;
    border: 3px solid #2b2117;
    border-radius: 28px;
    background: #fffaf0;
    box-shadow: 16px 16px 0 #caa66a;
}

h1 {
    margin-top: 0;
    font-size: clamp(2.5rem, 7vw, 5rem);
}

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

a {
    display: inline-block;
    margin-top: 18px;
    padding: 14px 22px;
    border-radius: 999px;
    background: #2b2117;
    color: #fffaf0;
    text-decoration: none;
    font-weight: 700;
}
