* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

html {
    font-size: 14px;
    height: 100vh;
}

body {
    background-color: #ff9ff3 !important;
    
}

.container {
    height: 100%;
    max-width: 90%; /* Usa percentual para melhor adaptação */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    color: #fff;
}

header {
    text-align: center;
    margin-bottom: 40px;
}

header img {
    max-width: 120px;
    margin-bottom: 20px;
}

header h1 {
    font-size: 2em; /* Ajustado para melhor escalabilidade */
    margin-bottom: 10px;
}

header p {
    font-size: 1.2em;
}

section.botoes {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

section.botoes a {
    width: 80%; /* Ajustado para dispositivos móveis */
    padding: 15px;
    text-align: center;
    border-radius: 50px;
    cursor: pointer;
    color: #fd79a8;
    background-color: white; /* Adicionado para melhor visibilidade */
    text-decoration: none;
    position: relative;
}

section.botoes a img.whatsapp{

    margin-left: 15px;
    position: absolute;
}

section.botoes a img.cake{

    margin-left: 150px;
    position: absolute;
}

section.botoes a img.egg{

    margin-left: 90px;
    position: absolute;
}

section.botoes a img.tree{

    margin-left: 120px;
    position: absolute;
}

.container footer {
    width: 100%;
    text-align: center;
    padding: 10px;
    margin-top: auto; /* Faz com que o footer vá para o final */
}

/* Media Query para Tablets (médio) */
@media (min-width: 768px) {
    .container {
        max-width: 600px;
    }

    section.botoes a {
        width: 50%;
    }

    
}

/* Media Query para Telas Grandes */
@media (min-width: 1024px) {
    .container {
        max-width: 800px;
        margin-top: 70px;
    }

    header h1 {
        font-size: 3em;
    }

    header p {
        font-size: 1.5em;
    }

    section.botoes a {
        width: 40%;
    }

    .container footer {
        margin-top: 100px;
    }
}

/* Media Query para Celulares */
@media (max-width: 600px) {
    html {
        font-size: 12px; /* Diminui a fonte geral */
    }

    .container {
        max-width: 90%;
        padding: 10px;
    }

    header h1 {
        font-size: 1.8em;
    }

    header p {
        font-size: 1em;
    }

    section.botoes {
        gap: 15px;
    }

    section.botoes a {
        width: 100%; /* Botões ocupam toda a largura disponível */
        padding: 12px;
        font-size: 1em;
    }

    .container footer {
        padding: 15px;
        font-size: 0.9em;
    }
}
