* {

    margin: 20px;
    background-color: #002124;

}

.container {


    display: flex;
    text-align: center;
    /* Centraliza o conteúdo filho */
    padding-top: 20px;
    /* Espaço no topo opcional */
    justify-content: center;

}

b,
strong,
mark {

    margin: 0;

}

h1 {

    text-align: center;
    font-size: 80px;

    color: #2fc1c8;
    text-shadow: 4px 4px 10px white;
    transition: 1s;
    display: inline-block;
    /* Mantém o comportamento inline-block */
    font-weight: bold;



}

h1:hover {

    color: #2fc1c8;
    font-size: 81px;
    text-shadow: 4px 4px 10px white

}

p {

    font-size: 25px;
    color: white;
    text-align: justify;

}

div {

    font-size: 25px;
    color: white;

}

a {

    font-size: 20px;
    background-color: #2fc1c8;
    color: white;
    padding: 40px;
    border-radius: 60px;
    margin-left: 40.5%;
    transition: 2s;
    text-decoration: none;
    box-shadow:0 0 5px #156a6e, 0 0 10px #156a6e, 0 0 50px #156a6e;

}

a:hover {

    font-size: 25px;
    background-color: #2fc1c8;
    color: white;
    padding: 45px;
    border-radius: 65px;
    margin-left: 39.5%;

}