body {
    margin: 0;
    padding: 0;
    background-color: black;
    user-select: none;
}

body::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
    pointer-events: none;
}

.conteiner_fundo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 950px;

    .quad_infos {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        flex-direction: column;
        background-color: black;
        gap: 4rem;
        width: 800px;
        height: 800px;
        border-radius: 12px;
        box-shadow: 0 0 30px white
    }

    .conteiner_quads h1 {
        color: yellow;
        font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
        transition: all 0.2s;
    }

    .titulo {
        margin: 0;
        padding: 0;
        margin-top: 10%;
        color: white;
        font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
        transition: all 0.2s;
    }

    .titulo:hover {
        transform: scale(1.1);
        color: orange;
    }

    .conteiner_quads {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .conteiner_quads {
        text-align: center;
    }

    .quads {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        width: 350px;
        height: 50px;
        border-radius: 10px;
        box-shadow: 0 0 10px yellow;
    }

    .quads p {
        margin: 0;
        padding: 0;
        color: white;
        font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
        cursor: pointer;
        text-decoration: underline;
        transition: all 0.2s;
    }

    .quads p:hover {
        color: yellow;
        transform: scale(1.1);
    }

    .quads img {
        width: 30px;
        height: 30px;
    }

    .links {
        margin: 0;
        padding: 0;
        text-decoration: none;
        display: inline-block;
    }
}

@media (max-width: 1024px) {
    .conteiner_fundo {
        display: flex;


        .quad_infos {
            width: 500px;
            height: 750px;
        }
    }
}

@media (max-width: 560px) {
    .conteiner_fundo {
        display: flex;

        .quad_infos {
            width: 400px;
            height: 750px;
            box-shadow: 0 0 10px yellow;
        }
    }
}