body {
    font-family: 'Kumbh Sans', sans-serif;
}

.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}


.popup-content {
    z-index: 1;
    transition: linear;
    padding: 20px;
    max-width: 90%;
    max-height: 90%;
    border-radius: 5px;
    animation: scaleUp 0.5s forwards;
    margin-top: 40%;
    margin-left: 40%;
}

.concurso-bolsas-img img {
    max-width: 100%;


}


#closeButton {
    font-size: large;
    margin-top: 0;
    margin-left: 101%;
}
.botao-fechar{
    text-align: right;
    margin-top: 0;
    margin-left: 101%;

}

@media (max-width: 400px) and (max-width: 767px)  {
    .popup-content {
        z-index: 1;
        transition: linear;
        padding: 10px;
        max-width: 90%;
        max-height: 90%;
        border-radius: 5px;
        animation: scaleUp 0.5s forwards;
        margin-top: 80%;
        margin-left: 40%;

    }
}

@media (max-width: 768px) {
    .popup-content {
        z-index: 1;
        transition: linear;
        padding: 10px;
        max-width: 90%;
        max-height: 90%;
        border-radius: 5px;
        animation: scaleUp 0.5s forwards;
        margin-top: 50%;
        margin-left: 40%;
    }
}

@media (min-width: 769px) and (max-width: 1026px) {
    .popup-content {
        z-index: 1;
        transition: linear;
        padding: 10px;
        max-width: 90%;
        max-height: 90%;
        border-radius: 5px;
        animation: scaleUp 0.5s forwards;
        margin-top: 50%;
        margin-left: 40%;
    }
}

@keyframes scaleUp {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}