* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: rgba(255, 253, 252, 1);
}

body {
    font-family: 'Inter', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    padding: 20px;
}

.fix {
    width: 80%;
    max-width: 60%;
    height: auto;
    margin-top: 20px;
}

.box {
    padding: 20px;
}

.box h1:first-of-type {
    font-family: 'Inter', sans-serif;
    font-weight: 200;
    font-size: 4vw;
    color: #F6832E;
}

.box h1:last-of-type {
    font-family: 'Inter', sans-serif;
    font-size: 2vw;
    font-weight: bold;
    color: rgba(27, 27, 24, 1);
}

@media (max-width: 768px) {
    .box h1:first-of-type {
        font-size: 6vw; /* Aumenta o tamanho da fonte em telas menores */
    }

    .box h1:last-of-type {
        font-size: 4vw; /* Ajusta o tamanho da fonte do último título */
    }

    .fix {
        width: 90%; /* Aumenta a largura para usar mais espaço da tela */
        max-width: 100%;
    }

    body {
        padding: 10px; /* Reduz o padding para dispositivos móveis */
    }
}

@media (max-width: 480px) {
    .box h1:first-of-type {
        font-size: 8vw; /* Ajusta ainda mais o tamanho da fonte */
    }

    .box h1:last-of-type {
        font-size: 5vw; /* Ajusta o tamanho da fonte para telas menores */
    }
}