html {
    background-image: url(./images/background.jpeg);
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

h1 {
    padding: 0;
    margin: 3rem;
    width: 80vw;
    font-family: "Henny Penny", system-ui;
    font-size: clamp(10rem, 10cqw, 50rem);
    font-weight: 400;
    font-style: normal;
    text-align: center;
    line-height: 1.2;
    color: #6a1a1a;
    text-shadow: 5px 5px 10px rgba(0,0,0,0.5);
}

@media (max-width: 1024px) {
    h1 {
        overflow-wrap: break-word;
    }
}
