/*
Black - #000000
Hot Fuchsia (Pink) - #FF0B55
Prussian Blue - #020026
Graphite (Grey) - #27272a
White - #FFFFFF

Grey palette(from lightest to darkest):
#A1A1AA
#71717A
#27272A
#1B1B1D
#121214
*/
img {
  max-width: 100%;
  height: auto;
}
body {
    background-color: #27272a;
    font-family: sans-serif;
    color: white;
}

.header {
    position: relative;
    align-items: center;
    padding: 0;
    z-index: 1;
}

.header h1 {
    text-align: center;
    white-space: nowrap;
    font-size: 2rem;
    margin: 0;
    font-size: 30px;
}


/*Title of page*/
h1 {
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    font-size: 30px;
    color: white;
    padding: 18px;
}

/* PAGE LOGO TOP LEFT */
.logo {
    width: 100px;
    height: auto;
    position: absolute;
    top: 20px;
    left: 100px;
    
}

/* INPUT LABELS */
label {
    display: block;
    text-align: left;
    font-size: 16px;
    margin-bottom: 5px;
}

.profile_icon {
    width: 300px;
    height: 300px;
}

/* FORM CONTAINER */
#form-container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    background: #27272a(30, 0, 50, 0.85);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 0 50px #FF0B55;
    width: 360px;
    margin-top: 30px;
}

/* INPUT FIELDS */
input[type="text"],
input[type="date"],
input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 8px;
    border-radius: 8px;
    border: none;
    font-size: 15px;
    margin-bottom: 15px;
}

/* SIGN UP BUTTON TEXT IS ALWAYS WHITE */
.sign-up-button a,
.sign-up-button a:link,
.sign-up-button a:visited,
.sign-up-button a:hover,
.sign-up-button a:active,
.sign-up-button a:focus {
    color: white !important;
    text-decoration: none !important;
}

/* SIGN UP BUTTON STYLE */
.sign-up-button {
    color: white !important;
    font-size: 18px;
    padding: 15px 25px;
    background-color: #FF0B55;
    border-radius: 80px;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
    margin-top: 10px;
    display: flex;
    justify-content: center;
    margin-top: 40px;
    text-decoration: solid;
    transition: 0.3s ease;
    cursor: pointer;
}

/* HOVER EFFECTS */
.sign-up-button:hover {
    background: #980033;
    color: white !important;
}

/* BACK BUTTON TEXT IS ALWAYS WHITE */
.back-button a,
.back-button a:link,
.back-button a:visited,
.back-button a:hover,
.back-button a:active,
.back-button a:focus {
    color: white !important;
    text-decoration: none !important;
}

/* BACK BUTTON STYLE */
.back-button {
    display: inline-block;
    color: white;
    font-size: 18px;
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: #020026;
    border-radius: 80px;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
    margin-top: 10px;
    display: flex;
    justify-content: center;
}

/* HOVER EFFECTS */
.back-button:hover {
    background-color: #02001c;
}

/* WHOLE BUTTON IS CLICKABLE */
.sign-up-button a,
.back-button a {
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
}

.profile_icon {
    width: 300px;
    height: 300px; 
}

.bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #1B1B1D;
    color: white;
    display: flex;
    justify-content: center;
    align-items: right;
    padding: 17px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
     box-shadow: 0 0 50px #FF0B55;
      border-radius: 100px;

}
style{
    width:24px; 
    height:24px; 
    vertical-align: middle; 
    margin-left: 10px;}

.bottom-bar button {
    display: flex;
    justify-content: left;
    background: #FF0B55;
    color: white;
    border: none;
    padding: 19px;
    margin: 0 10px;
    cursor: pointer;
    border-radius: 100px;
    box-shadow: 0 0 50px #FF0B55;
}

.bottom-bar button:hover {
   background: #980033;
    color: white !important;
}

.bottom-bar a,
.bottom-bar a:link,
.bottom-bar a:visited,
.bottom-bar a:hover,
.bottom-bar a:active,
.bottom-bar a:focus {
    color: white !important;
    text-decoration: none !important;
}

#volume {
  width: 100px;
  margin-right: 10px;
  justify-content: left;

}

output {
  color: white;
  font-size: 16px;
}

.song-card {
    background-color: #1B1B1D;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    width: auto;
    margin: 20px auto;
    transition: color 0.3s ease;
    color: white !important;
    text-decoration: none !important;
    flex: 0 0 25%;
    box-sizing: border-box;
}

.song-card img {
    width: 100%;
    border-radius: 10px;
}

.song-card h3 {
    color: white;
    margin-top: 10px;
    font-size: 18px;
}

/* HOVER EFFECTS FOR SONG CARD */
.song-card:hover {
    background-color: #27272a;
    box-shadow: 0 0 10px #FF0B55;
    transform: scale(1.05);
    transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
}

.covers_block {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 100px;
    margin-bottom: 200px;
}

