body {
    background-color: #333;
    justify-content: center;
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

.cabeçalho {
    color: #eee;
    text-align: center;
    font-family: 'Oswald', sans-serif;
    font-size: 30px;
    padding: 10px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    padding: 15px 20px;
    border-radius: 15px;
}

.logo {
    color: white;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    /*width: 200%;*/
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li {
    margin: 0;
}

.nav-links a {
    font-family: 'Oswald', sans-serif;
    text-decoration: none;
    color: white;
    padding: 10px 15px;
    transition: background-color 0.3s;
}

.nav-links a:hover {
    background-color: #555;
    border-radius: 5px;
}

.candidato {
    display: flex;
    flex-direction: column;
    width: 200px;
    height: 300px;
    border: 2px solid #bbb;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    background-image: url('../static/img/logo_novo.svg');
    background-position: right 10px top 10px;
    background-repeat: no-repeat;
    background-size: 40%;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    margin: 10px;
    padding: 10px;
    background-color: #ff6300;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    z-index: 1;
}

.candidato:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 1.0);
    z-index: 2;
}

.foto {
    position: relative;
    width: 200px;
    height: 300px;
    overflow: hidden;
}

.foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.nome {
    width: 180px;
    position: absolute;
    line-height: 30px;
    bottom: 30px;
    left: 50%;
    transform: translate(-50%);
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 1.4);
    padding: 3px;
    border-radius: 5px;
    margin-bottom: 2px;
    font-size: 30px;
    text-align: center;
    font-family: 'Oswald', sans-serif;
    transition: font-size 0.3s;
}

.nome a {
    color: inherit;
    text-decoration: none;
}

.nome:hover {
    font-size: 36px;
    transition: font-size 0.3s
}

.numero {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translate(-50%);
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 1.4);
    padding: 3px;
    border-radius: 5px;
    font-size: 25px;
    font-family: 'Oswald', sans-serif;
    transition: font-size 0.3s;
}

.numero a {
    color: inherit;
    text-decoration: none;
}

.numero:hover {
    font-size: 30px;
    transition: font-size 0.3s;
}

.midia-container {
    border-top: 1px solid #bbb;
    border-bottom: 1px solid #bbb;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 25%;
    background-color: #333344;
    justify-content: center;
}

.midia-candidato {
    /*display: flex;*/
    /*flex-direction: row;*/
    align-content: center;
    /*justify-content: center;*/
}

.midia-candidato a {
    padding: 2px;
    align-content: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    color: #bbbbbb;
    align-items: center;
    transition: background-color 0.3s;
    text-decoration: none;
    font-family: "Oswald", sans-serif;
}

.midia-candidato:hover {
    background-color: orangered;
    transition: background-color 0.3s;
}

.svg {
    width: 24px; /* Largura do ícone */
    height: 24px; /* Altura do ícone */
    margin-right: 5px; /* Espaço entre o ícone e o texto */
    margin-left: 5px; /* Espaço entre o ícone e o texto */
}

.txt {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    font-size: 16px;
    margin-right: 6px;
    justify-content: center;
}