/**********************************************************

* This is the stylesheet for my website 

* @filename:myStyle.css

* @author: Liam Bailey

* @Date: 16/3/20

************************************************************
/*CREDIT TO http://blogs.sitepointstatic.com/examples/tech/css3-starwars/index.html for the scrolling titles-->*/
/* whole page styling */
@import url(http://fonts.googleapis.com/css?family=Droid+Sans:400,700);

* { padding: 0; margin: 0; }

body, html
{
	width: 100%;
	height: 100%;
	font-family: "Droid Sans", arial, verdana, sans-serif;
	font-weight: 700;
	color: #ff6;
	background-color: #000;
	overflow: hidden;
}

/* Navbar container */
.navbar {
  overflow: hidden;
   background-image: url("images/starwarsstars.png");
  font-family: "Droid Sans", arial, verdana, sans-serif;
}
/* The dropdown container */
.dropdown {
  float: left;
  overflow: hidden;
}

/* Dropdown button */
.dropdown .dropbtn {
  font-size: 16px;
  border: none;
  outline: none;
  color: #ff6;
  padding: 14px 16px;
  background: url("images/starwarsstars.png");
  font-family: inherit; 
  margin: 0; 
}

/* Add a red background color to navbar links on hover */
.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: red;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

/* Add a grey background color to dropdown links on hover */
.dropdown-content a:hover {
  background-color: #ddd;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}
/* The dropdown container */
.dropdown {
  float: left;
  overflow: hidden;
}

.gif-holder {
  max-width: 300px; /* Adjust this width as desired */
  margin: 50px auto;
  border: 2px solid #fff;
  border-radius: 10px;
  overflow: hidden;
}

.gif-holder img {
  width: 100%;
  height: auto;
  display: block;
}

.winamp {
  width: 300px;
  background-color: #000;
  border: 2px solid #fff;
  border-radius: 5px;
  padding: 10px;
}

.winamp-titlebar {
  display: flex;
  justify-content: space-between;
}

.winamp-title {
  font-size: 14px;
  font-weight: bold;
}

.winamp-icons {
  display: flex;
}

.winamp-icon {
  width: 20px;
  height: 20px;
  background-color: #fff;
  margin-left: 5px;
}

.winamp-controls {
  margin-top: 10px;
}

.winamp-buttons {
  display: flex;
  justify-content: space-between;
}

.winamp-button {
  width: 30px;
  height: 30px;
  background-color: #fff;
}

.winamp-progress {
  height: 5px;
  background-color: #555;
  margin-top: 5px;
}

.winamp-timeline {
  display: flex;
  justify-content: space-between;
  margin-top: 5px;
}

.winamp-time {
  font-size: 12px;
}

.winamp-timeline-bar {
  width: 100%;
  height: 5px;
  background-color: #fff;
}