@font-face {
    font-family: proxima-nova;
    src: url('fonts/proximanova_regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    background-image: url("images/noise.png");
    background-repeat: repeat;
    font-family: 'proxima-nova', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

div#Header {
    text-align: center;
    padding: 20px 10px;
}

#Header h1 {
    margin: 0;
    font-size: clamp(1.5rem, 5vw, 2.5rem);
}

#Header p {
    margin: 10px 0 0;
    font-size: clamp(0.9rem, 3vw, 1.2rem);
}

.profile-pic {
    width: 30px;
    height: 30px;
    object-fit: cover;
    margin-right: 5px;
    vertical-align: middle;
}

a {
    text-decoration: none;
    color: #1DB954;
    white-space: nowrap;
}

a:hover {
    text-decoration: underline;
}

hr {
    width: 80%;
    margin: 10px auto;
    border: 0;
    height: 1px;
    background-color: #ddd;
}

/* Spotify button styles */
.btn-spotify {
    display: inline-block;
    background-color: #1DB954;
    color: white;
    padding: 10px 15px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn-spotify:hover {
    background-color: #1ED760;
}

.btn-spotify i {
    margin-right: 8px;
}

.profile-pic {
    width: 30px;
    height: 30px;
    object-fit: cover;
    margin-right: 5px;
    vertical-align: middle;
    border-radius: 7px;
}