*{
      
    box-sizing: border-box;
    margin: 0;
    padding: 0;

}

body{
    font-family: 'Courier New', Courier, monospace;
    background-color: black;
    color: #f1f1f1;
    text-align: center;
}
nav{
    width: 100%;
    background-color: aliceblue;
    display: flex;
    position: static;
    justify-content: center;
}
nav a{
    align-items: center;
    text-decoration: none;
    padding: 10px;
}
main{
    color: rgb(0, 132, 247);
}
h1{
    padding-top: 50px;

}
h2{
    padding-top: 50px;

}

.videos{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;

}
.video{
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    border-radius: 50px;

}
.video video{
    width: auto;
    max-width: 800px;
    height: 400px;
    border-radius: 20px;
}
.video img{
    border-radius: 20px;
    height: 350px;
    width: 300px;
}
.video h4{
    padding-top: 10px;
}
.videos h3{
    height: 30px;
    text-align: left;
}

.artistas{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    

}
.album{
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    border-radius: 50px;
    padding-inline: 100px;

}
.album img{
    border-radius: 20px;
    height: 350px;
    width: 300px;
}
.album h4{
    padding-top: 10px;
}
.categorias{
    
    text-align: left;
}
.categorias a{
    color: rgb(255, 255, 255);
    text-decoration: none;
}

.genre{
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    border-radius: 50px;
    padding-inline: 100px;

}

.genre img{
    border-radius: 20px;
    height: 350px;
    width: 300px;
}
.genre h4{
    padding-top: 10px;
}

.return{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100vh;
    padding: 20PX;
    text-decoration: none;
}
.return a{
    text-decoration: none;
}
