@charset "UTF-8";

/* CSS rules go below */

html {
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    height: 100%;
    width:100%;
    align-items: center;
    overflow: hidden;
}

body {
    background-color: #ffffff;
    transition: background-color 0.3s ease;
}
.container {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width:100%;
text-align: center;
color:rgb(32, 55, 55);
border-radius: 40px;
line-height:1.5;
}


.startcontainer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width:100%;
    text-align: center;
    color:rgb(32, 55, 55);
    padding:20px;
    border-radius: 40px;
    line-height:40%;
    }

.startcontainer h1 {
    font-family: 'Roberte';
    src: url('https://songrecommendationfunction.netlify.app/assets/css/photos/Roberte-Regular.otf');
    font-size:50px;
    display: inline-block;
    animation: bounce 1s infinite;
}

.container h1 {
    font-family: 'Roberte';
    src: url('https://songrecommendationfunction.netlify.app/assets/css/photos/Roberte-Regular.otf');
    font-size:50px;
    display: inline-block;
    color:rgb(32, 55, 55);
    text-shadow: white 1px 1px 1px;
}

.resultcontainer {
    position: absolute;
    top: 2.5%;
    left: 10%;
    transform: translate(-50%, -50%);
    width:80%;
    text-align: center;
    background-color: white;
    color:rgb(32, 55, 55);
    padding:20px;
    line-height:50%;
    animation: bounce 1s infinite;
}

@keyframes entrance {
	0% {
		opacity: 0;
		transform: translateY(-200px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}
.feelingdifferent {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
    width:80%;
    text-align: center;
    color:rgb(32, 55, 55);
    line-height:40%;
    padding:30px;
    z-index: 1;
}

.resultcontainer h1 {
    font-family: 'Roberte';
    src: url('https://songrecommendationfunction.netlify.app/assets/css/photos/Roberte-Regular.otf');
    font-size:50px;
}

#songtitle {
color: #203737;;
}

button {
background-color:#203737;
color: white;
border-radius: 10px;
font-size:15px;
transition: transform .2s ease;
}

.mybutton {
margin-top: 15px;
background-color:rgb(32, 55, 55);
color: white;
border-radius: 15px;
font-size:20px;
transition: transform .1s ease-out;
}

button:hover {
    background-color: #ffffff;
    color:rgb(32, 55, 55);
    transform: scale(1.05);
    border-radius: 27px;
}

.mybutton:hover {
    background-color: #ffffff;
    color:rgb(32, 55, 55);
    transform: scale(1.05);
    border-radius: 23px;
}


#draggablestickynote {
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    background-color: rgb(255, 243, 190);
    border: 1px solid rgb(219, 204, 148);
    text-align: center;
    width:25%;
    color:rgb(32, 55, 55);
    text-justify: auto;
    font-size:18px;
    cursor: move;
    padding-bottom:15px;
  }

  #draggablestickynote h4 {
    font-style: italic;
  }
  
  #draggablestickynoteheader {
    font-family: 'Roberte';
    src: url('https://songrecommendationfunction.netlify.app/assets/css/photos/Roberte-Regular.otf');
    font-size:40px;
    padding-top: 30px;
    cursor: move;
    z-index: 2;
  }


@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}



#draggableearphones {
    top:50%;
    left:50%;
    transform: translate(-50%, -50%);
    position: absolute;
    width:20%;
    height:relative;
    cursor: move;
    z-index:3;

}

#draggablemia, #draggableradiohead  {
    top:50%;
    left:50%;
    transform: translate(-50%, -50%);
    position: absolute;
    width:20%;
    height:relative;
    cursor: move;
}


.video-container {
    position: fixed; 
    z-index: -1; 
    display: none;
}

.video-container video {
    position: absolute;
    object-fit: cover; 
    height: auto; 
    width: 50%;
    z-index: -1; 
}

.video-container.pop {
    top: 10%; 
    left: 0;
    width: 50%; 
    height: auto;
    z-index: -1;
}

.video-container.rock {
    bottom: 0;
    right: 0; 
    width: 50%;
    height: auto;
    z-index: -1;
}

.video-container.punk {
    bottom: 0; 
    right: 70%; 
    width: 60%;
    height: auto;
    z-index: -1;
}

.video-container.folk {
    top: 0%; 
    right: 30%; 
    width: 60%;
    height: auto;
    z-index: -1;
}

button[data-value="Pop"]:hover ~ .video-container[data-value="Pop"],
button[data-value="Rock"]:hover ~ .video-container[data-value="Rock"],
button[data-value="Punk"]:hover ~ .video-container[data-value="Punk"],
button[data-value="Folk"]:hover ~ .video-container[data-value="Folk"] {
    display: block; 
}


  .spotify-container {
    position: absolute; 
    top: 25%;
    left: 20%;
    transform: translate(-50%);
    width: 70%;
    width:60%;
    height: 100%;
    animation: spotify 2s ease-in-out 0s 1 normal forwards;
  }

  @keyframes spotify {
	0% {
		opacity: 0;
		transform: translateX(250px) rotate(200deg);
	}

	100% {
		opacity: 1;
		transform: translateX(0) rotate(0deg);
	}
}


.spotify-container iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    border: none;
}

button[data-category="mood"]:hover {
    color: white; 
    border-radius: 10px; 
    color:rgb(32, 55, 55);
}
