body {
    background-color: #ff0000 !important; 
    color: white;
    min-height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 0;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
    justify-content: center;
}

.senai img {
    max-width: 600px; 
    height: auto;
    margin-bottom: 20px;
}

.grid-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 600px;
}

.quadro1 {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.quadro2 {
    display: flex;
    justify-content: flex-end; 
    align-items: center;
    gap: 10px;
    width: 100%;
}

p {  
    margin: 0;
    font-size: 2.5rem;
    color: white;
    line-height: 1;
    font-weight: bold;
}

h2 {
    margin: 0;
    padding: 2px 15px;
    font-size: 2rem;
    color: #ff0000;
    background-color: white;
    border-radius: 4px;
}

footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding-bottom: 20px;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

footer h1 {
    font-size: 1.2rem;
    margin: 0;
    color: white;
}

footer img {
    width: 30px;
    height: 30px;
    transition: transform 0.2s;
}

.github {
    filter: brightness(0) invert(1);
    display: flex;
}

.linkedin img {
    width: 40px; 
    height: 40px;
}

footer img:hover {
    transform: scale(1.2);
}