/* Estilos gerais */
body {
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    background: url('../img/background.png') repeat center center; 
    background-size:contain;
    position: relative;
}
a{
    text-decoration: none;
    color: #082C40;
}
a:hover{
    color: red;
}
/* Cabeçalho */
.header {
    background-color: #082C40;
    padding: 15px;
    text-align: center;
    color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

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

.logo {
    width: 100px;
    margin-bottom: 10px;
}

.radio-name {
    font-size: 1.5em;
    font-weight: bold;
    margin: 0;
}

/* Conteúdo principal */
.content {
    background-color: rgba(255, 255, 255, 0.774);
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
    text-align: justify;
    line-height: 1.8;
}

.content h2 {
    text-align: center;
    color: #082C40;
    margin-bottom: 20px;
}

