@import url("https://fonts.cdnfonts.com/css/rawline");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Rawline", Arial, sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url("../images/receita-federal.png") no-repeat center center fixed;
    background-size: cover;
}

.container {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 30px;
    border-radius: 10px;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

h1 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
}

p {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
}

.button {
    background-color: #007bff;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #0056b3;
}

@media (max-width: 600px) {
    .container {
    padding: 20px;
    }

    h1 {
    font-size: 20px;
    }

    p {
    font-size: 14px;
    }

    .button {
    padding: 10px 20px;
    font-size: 14px;
    }
}