@font-face {
    font-family: 'Prata';
    font-style: normal;
    font-weight: 400;
    src: url('https://documentsassist.com/wp-content/uploads/2025/09/Prata-Regular.ttf') format('truetype');
}


header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    text-align: center;
    margin: 0 auto;
    background-color: white;
    z-index: 99;
}

main {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 80vh;

    h1 {
        font-family: 'Prata';
    }

    p {
        font-size: 22px !important;
        margin-top: 40px;
        margin-bottom: 40px;
    }

    button {
        position: relative;
        font-family: 'Prata';
        font-size: 25px;
        color: white;
        background-color: #7E0000;
        border-radius: 20px;
        padding: 10px 20px;
    }
}

footer {
    position: fixed;
    bottom: 0;
    min-width: 100%;
    max-width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: white;
}