main {display: flex; align-items: center; justify-content: center;}
.grid-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    max-width: 700px;
    min-width: 50px;
    width: 90%;
    gap: 30px;
    margin: 0 auto; 
}

.artigo {
    border: 1px solid #999;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.artigo .box-text {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
}

.artigo .name {
    font-size: 1.2rem;
    color: #555;
    font-weight: 600;
}

.artigo .subtitle {
    font-size: 1.1rem;
    color: #555;
    font-weight: 500;
}

.artigo .box-button {
    border-top: 1px solid #999;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.artigo .entrar {
    color: rgb(60, 60, 255);
    font-size: 1rem;
}

.artigo .entrar:hover {
    color: rgb(0, 0, 255);
}