body {
    margin: 0;
    padding: 0;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif, sans-serif;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh; /* 100% da altura da viewport */
    /* background: url('bgMary.png') center/cover no-repeat; Substitua pela sua imagem de fundo */
    background-color: black;
}

.logo {
    max-width: 85%;
    height: auto;
    margin-bottom: 20px;
}

.logo:hover {
    transform: translate(5px, 5px);
}

.info {
    text-align: center;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600; /* Estilo Medium */
}

.social-icons {
    margin-top: 20px;
    color: #fff;
}

.social-icons a {
    margin: 0 20px;
    text-decoration: none;
}

.social-icons img {
    max-width: 50px; /* Ajuste o tamanho conforme necessário */
    height: auto;
}

.footer {
    text-align: center;
    font-size: 14px;
    color: #252323;
    position: absolute; /* Posicionamento absoluto para fixar no final da página */
    bottom: 0;
    width: 100%;
    /* padding: 10px; */
}