* {
    box-sizing: 0;
    padding: 0;
    margin: 0;
    text-align: center;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: whitesmoke;

    >main {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: calc(100% - 40px);
        padding: 30px 20px;
        gap: 20px;

        >.img_novo_site {
            width: 100%;
            max-width: 768px;
            cursor: pointer;
            transition: all ease-in-out .2s;

            &:hover {
                scale: 1.02;
            }
        }

        >.text {
            font-size: 1.1rem;
            color: #555;
        }

        >a {
            font-size: 1.0rem;
        }
    }
}