body, html {
    margin: 0;
    padding: 0;
}

.background {
    width: 100vw;
    height: 100vh;
    overflow-y: scroll;
    background-image: url('https://i.postimg.cc/0yZsTQcy/matteblack.png');
    background-size: cover;
    animation: pergamena 2s ease forwards;
}

@keyframes pergamena {
    0% {
        transform: scaleY(0);
        transform-origin: center center;
        opacity: 0;
    }
    100% {
        transform: scaleY(1);
        transform-origin: center center;
        opacity: 1;
    }
}

h1 {
    font-family: 'Goldman', sans-serif;
    font-weight: 400; /* Regular weight */
    margin-bottom: 50px;
    font-size: 50px;
    color:white;
}

h2, h3 {
    font-size: 35px;
    color:white;
}

.content {
    color: white;
    padding: 40px;
    font-family: Arial, sans-serif;
    font-size: 30px;
    margin-top: 60px;
    text-align: center;
}
