
.main {
    width: 50%;
    margin-left: 10%;
    margin-bottom: 5rem;
}

.wrapper {
    margin-top: 12% !important;
}

.article {
    display: flex;
    align-items: center;
    margin-bottom: 10rem;

    padding: 1rem;
    width: 80%;
    margin: 0 10% 0 10%;
    margin-bottom: 5rem;
}

h2 {
    margin: 0 auto;
}

.article>.image {
    width: 30%;
    box-shadow: 10px 5px 30px black;
    margin: 2rem;
}

.article ul {
    margin-left: 2rem;
}

.article li {
    padding-top: 0.2rem;
}

.spotlight {
    flex-wrap: wrap;
    text-align: center;
}

#spotlight-image-container {
    width: 100%;
    height: 25rem;
    object-fit: contain;
    margin-bottom: 2rem;
}

#spotlight-image {
    height: 100%;
    object-fit: contain;
    box-shadow: 5px 5px 10px black;
}

.spotlight-text-container>p {
    text-align: justify;
}

#title-spotlight {
    width: 100%;
}

.button-container {
    width: 100%;
    display: flex;
    justify-content: center;
}


#main-text-container>p>.button {
    margin-top: 2rem;
}


@media only screen and (max-width: 1000px) {
    .main {
        width: 80%;
    }

    .spotlight {
        flex-direction: column;
    }

    #spotlight-image {
        width: 80%;
    }

    .spotlight>p {
        text-align: center;
    }

    .spotlight>p>.button {
        margin: auto;
    }

    .article {
        flex-direction: column;
        border-top: none;
        border-bottom: none;
    }

    .article .image {
        width: 80%;
    }

    .article>.text-container {
        width: 100%;
    }

    #css-badge {
        margin-right: 1rem;
    }
}


