@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --typeface: Rubik, Verdana, Geneva, Tahoma, sans-serif;
}

body {
    background-color: black;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

ul {
    width: 100%;
    padding: 0;
    margin: 0;
}

li {
    text-align: center;
    font-size: 3rem;
    padding: 3rem;
    list-style-type: none;
    font-family: var(--typeface);
    font-weight: bold;
}

a {
    text-decoration: none;
    color: unset;
    transition: 0.4s ease-in-out;
}

.head {
    color: white;
    font-size: 1.5rem;
}

.spotify {
    color: #1db954;
}

.apple {
    color: crimson;
}

.soundcloud {
    color: orange;
    background-color: black;
}

.tidal {
    color: white;
}

.amazon {
    color: #3b0ccd;
    background-color: black;
}

.deezer {
    background-color: black;
    color: purple;
}

.youtubemusic {
    color: #D70040;
}

.foot {
    color: whitesmoke;
    font-size: 1.2rem;
}

.copy {
    color: whitesmoke;
    font-weight: normal;
    font-size: 1rem;
}





.spotify:hover {
    background: linear-gradient(to right, #61c183, #1db954);
    color: white;
}
  
.apple:hover {
    background: linear-gradient(to right, #fc3c44, red);
    color: white;
}

.soundcloud:hover {
    background-color: orange;
    color: white;
}

.tidal:hover {
    background-color: #fff;
    color: #18181b;
}

.amazon:hover {
    background: linear-gradient(to right, #3b0ccd, #2b1e7a);
    color: white;
}

.deezer:hover {
    background-color: purple;
    color: white;
}

.youtubemusic:hover {
    background-color: #D70040;
    color: white;
}

.foot:hover {
    color: grey;
}