*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: white;
}

.text-black{
    color: black;
}

/* GERAL */
.center-container {

    
    padding: 20px;
    background-color: #ffffff; 
    text-align: center;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    /* Removemos o fixed aqui e adicionamos flexbox */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-y: auto; /* Permite rolagem caso o conteúdo ultrapasse a altura da tela */
}

/* Certificados */
.certificate {
    display: flex;
    flex-direction: column; /* Organiza os elementos em coluna */
    justify-content: center; /* Centraliza verticalmente */
    align-items: center; /* Centraliza horizontalmente */
    text-align: center;
    gap: 15px; /* Adiciona espaçamento entre os elementos */
}

/* A imagem vai preencher a largura disponível sem distorção */
picture img {
    width: 100%;
    height: auto;
    justify-content: center;
    align-items: center;
}



.top-bar {
    position: relative;
    margin-bottom: 5rem;
    text-align: center;
    left: 0;
    width: 100%;
    height: 50px;
    background-color: #333333ce;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.link-text{
    list-style: none;
    color: white;
    text-decoration: none;
    transition: transform 0.5s;
}

.link-text:hover{
    transform: scale(1.1);
    color: rgb(242, 255, 58);


}

.modal{
    --bs-modal-width: 65%;
}
