* {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Source Sans Pro' !important;
}

.imagem {
    position: absolute;
    object-fit: cover;
    z-index: -1;
    width: 100%;
    height: 100%;
    filter: blur(80px);
}


.global-conteudo,
.global-texto,
.global-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.global-conteudo {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.85);
    box-shadow: rgb(10 11 13 / 8%);
    width: 100%;
    height: 100%;
}

.global-texto {
    margin: 1.8rem 0rem;
}

.global-list {
    gap: 1.2rem;
    width: 35rem;
}

h2 {
    margin-top: 1rem;

    font-size: 20px;
    font-weight: 500;
    line-height: 2.3rem;

    color: white;

}

p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

a {
    text-decoration: none;
    width: 100%;
    font-size: 14px;
    padding: 16px 0rem;
    background-color: rgba(0, 0, 0, 0.8);
    box-shadow: rgb(10 11 13 / 8%);
    color: white;
    font-weight: 500;
    transition: 200ms;
    border-radius: 8px;
}

a:hover {
    transform: scale(1.1);
}

.logo {
    width: 96px;
    height: 96px;
    border-radius: 50%;
}


.text-footer {
    margin: 1rem 0rem;
    color: white;
    font-size: 14px;
}

@media screen and (max-width: 600px) {

    .global-list {
        width: 20rem;
    }
}

@media screen and (max-width: 400px) {

    .global-list {
        width: 15rem;
    }
}