@import url('https://fonts.googleapis.com/css2?family=Ubuntu&display=swap');

* {
    font-family: 'Ubuntu', sans-serif;
}

pre {
    white-space: pre-line;
    text-align: justify;
}

body {
    display: flex;
    flex-direction: column;
    height: 100dvh;
    background-color: #082f49;
}

main {
    flex-grow: 2;
}

main:not(.main-home) {
    display: flex;
    justify-content: center;
}

main > div:not(.card-container) {
    padding: 0 2rem;
    color: white;
    width: 100%;
    max-width: 780px;
}

img {
    border-radius: 10px;
}

/* Estilos comuns para a barra de navegação (navbar) e o rodapé (footer) */
.navbar,
.footer {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 10px;
    color: white;
}

.navbar {
    /* Sobrescreve a cor de fundo para a barra de navegação (navbar) */
    background-color: rgba(0, 0, 0, 0.2) !important;
}

.navbar-toggler {
    border: none;
}

.navbar-toggler:hover, 
.navbar-toggler:active, 
.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.navbar-toggler-icon > .navbar-toggler-icon-bar {
    display: block;
    height: 3px;
    background-color: white;
    border-radius: 20px;
    position: relative;
    transform: translateY(-6px);
}

.navbar-toggler-icon > .navbar-toggler-icon-bar::after, 
.navbar-toggler-icon > .navbar-toggler-icon-bar::before {
    content: '';
    position: absolute;
    display: block;
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 20px;
}

.navbar-toggler-icon > .navbar-toggler-icon-bar::after {
    top: 6px;
}

.navbar-toggler-icon > .navbar-toggler-icon-bar::before {
    top: 12px;
}

.nav-link {
    color: azure !important;
}

.nav-link:hover {
    color: yellow !important;
}

.titulo-projeto-3e::after {
    content: '3ºE';
    display: inline-block;
    font-size: 1rem;
    background-color: yellow;
    color: black;
    padding: 5px 10px;
    border-radius: 10px;
    margin-left: 10px;
    transform: rotate(15deg);
}
