/* Reset default margin and padding */
* {
  margin: 0;
  padding: 0;
}

/* Set background color and font family */
body {
  background-color: #ffffff;
  font-family: Arial, sans-serif;
}

/* Create taskbar at the bottom of the page */
.taskbar {
  background-color: #79c9c3;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  z-index: 100;
}

/* Style the Start button */
.start-button {
  color: #79c9c3;
  background-color: #ffffff;
  border: none;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 20px;
  cursor: pointer;
}

/* Style the desktop icons */
.desktop {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
    width: 25%;
  grid-gap: 20px;
  padding: 40px;
}

.desktop-icon {
  width: 100px ;
  max-width: 100%;
  height: auto;
  padding: 0px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s ease-in-out;
}

.desktop-icon:hover {
  transform: translateY(-5px);
}

.desktop-icon img {
  max-width: 100%;
}

.desktop-icon p {
  margin-top: 10px;
}

/*
 Style the active desktop icon 
.desktop-icon.active {
  background-color: #79c9c3;
  color: #ffffff;
}
*/

/* Style the active desktop icon text */
.desktop-icon.active p {
  color: #ffffff;
}

/* Popup container */
.popup {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

/* The actual popup (appears on top) */
.popup .popuptext {
  visibility: hidden;
  width: 400px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  /*padding: 8px 0;*/
  position: absolute;
  /*z-index: 1;*/
  /*  top: 0px;*/
  height: auto;

}

.popup .popuptext .popupbar {
  background-color: black;
  width: inherit;
  top: 100%;
  height: 20%;
}

.popup .popuptext .popupbar .popupclose {
display: inline-block;
    text-align: center;
    background-color: red;
    width: 5%;
    top: 0px;
    right: 0px;
    position: absolute;
}


/* Popup arrow */
.popup .popuptext::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

/* Toggle this class when clicking on the popup container (hide and show the popup) */
.popup .show {
  visibility: visible;
  /*-webkit-animation: fadeIn 1s;*/
  animation: fadeIn 1s
}

/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity:1 ;}
}