body{
background:#0a0a0a;
color:white;
font-family:'Segoe UI',sans-serif;
}

/* Navbar */

.navbar{
background:#000;
}

/* Logo */

.rz-logo{
font-weight:900;
font-size:1.8rem;
letter-spacing:3px;
color:#ff0055;
}

/* Hero */

.hero{
height:90vh;
background:linear-gradient(rgba(0,0,0,.7),rgba(0,0,0,.8)),
url('https://images.unsplash.com/photo-1511379938547-c1f69419868d');
background-size:cover;
background-position:center;
display:flex;
align-items:center;
text-align:center;
}

.hero h1{
font-size:5rem;
font-weight:800;
letter-spacing:4px;
}

.hero p{
font-size:1.5rem;
color:#ccc;
}

/* Buttons */

.btn-rz{
background:#ff0055;
border:none;
color:white;
}

/* Titles */

.section-title{
font-size:2.5rem;
font-weight:700;
margin-bottom:40px;
text-align:center;
}

/* Artist cards */

.artist-card{
background:#111;
border:none;
transition:.3s;
}

.card-title {
color: #ffffff;
}

.artist-card:hover{
transform:translateY(-10px);
box-shadow:0 10px 25px rgba(0,0,0,.6);
}

/* Releases */

.release-card{
background:#111;
border:none;
}

/* Footer */

footer{
background:#000;
padding:40px 0;
}