/* Estilos gerais */
body {
    background-color: black;
    color: white;
    font-family: "𝖊𝖝𝖊𝖒𝖕𝖑𝖔", sans-serif;
}

h1 {
    color: red;
}

.verified-icon {
    width: 30px;
    height: auto;
    margin-left: 10px;
}

/* Estilos para a seção de música em breve */
.music-section {
    border-bottom: 1px solid red;
    padding-bottom: 20px;
    text-align: center;
}

.music-image {
    width: 100%; /* Ajustado para ocupar a largura máxima */
    max-width: 500px;
    height: auto;
    margin-bottom: 10px;
}

.music-title {
    font-size: 24px;
    font-weight: bold;
}

.music-release {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
    filter: blur(1px);
}

/* Estilos para o menu de abas */
.tabs {
    background-color: #333;
    color: white;
    text-align: center;
}

.tabs ul {
    list-style-type: none;
    padding: 0;
}

.tabs ul li {
    display: block; /* Alterado para empilhar em dispositivos móveis */
    margin: 10px 0; /* Espaçamento superior e inferior para dispositivos móveis */
}

.tabs ul li a {
    text-decoration: none;
    color: rgb(255, 255, 255);
    display: block; /* Alterado para ocupar a largura total em dispositivos móveis */
    padding: 10px 0; /* Espaçamento superior e inferior em dispositivos móveis */
}

.tabs ul li a:hover {
    text-decoration: underline;
}

/* Estilos para dispositivos móveis */
@media screen and (max-width: 600px) {
    .verified-icon {
        width: 20px;
        margin-left: 5px;
    }

    h1 {
        font-size: 24px;
    }

    .music-title {
        font-size: 20px;
    }

    .music-release {
        font-size: 14px;
    }

    .tabs ul li a {
        font-size: 16px; /* Tamanho da fonte maior em dispositivos móveis */
    }

    footer {
        font-size: 14px;
    }

    #contato p {
        font-size: 16px;
        line-height: 1.5;
    }
}
