.desktop {
  background-image: linear-gradient(to bottom right, red, #000000);
  position: fixed;
  top: 30px;
  bottom: 0;
  left: 0;
  right: 0;  
  display: flex;
  column-gap: 15px;   
  padding: 20px;
  z-index: 100;

}

.desktop-icons {
  /* width: 200px; */
  display: flex;
  flex-direction: column;
  color: white;
  font-weight: bold;
  row-gap: 5px;
  /* justify-content: start; */
  align-items: flex-start;
  font-size: 10px;
  /* height: 30%; */
}

.icon {
  width: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 3px;
  text-align: center;
  opacity: 1;
  transition: opacity 0.3s;
}

.icon:hover { 
  opacity: 0.6;
}

.icon img {
  min-width: 10px;
  max-width: 30px;
}

.desktop-right-side {
  height: 100%;
  position: relative;
  width: 100%;
}
/* terminal */
.desktop-terminal {
  display: flex;
  flex-direction: column;
  visibility: hidden;
  transform: scale(0.05);
  transition: transform 0.15s;
}

.terminal-header,
.popup-header { 
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #424B54;
  color: white;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  padding: 1px 6px;
}

.header-hostname{
  font-size: 15px;
}

.header-buttons {
  font-size: 8px;
  display: flex;
  justify-content: space-between;
  column-gap: 5px;
  align-items: center;
}

.header-buttons span {
  padding: 1px 2px;

}

.header-buttons span:hover {
  background-color: white;
  color: black;
  border-radius: 50%;
}

.terminal {
  background-color: rgba(0, 0, 0);
  color: white;
  font-size: 14px;
  padding: 4px 10px;
  flex: auto;
}

.windows-radius-round {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.shell {
  font-size: 12px;
}
/* cursor on terminal effect  */
.cursor { 
  background-color: white;
  height: 100%;
  width: 100%;
  padding: 0px 4px;
  animation: 350ms ease infinite alternate blink;
}

@keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.icon a{
  text-decoration: none;
  color: inherit;
}

.link-effect-pointer {
  cursor: pointer;
}

/* windows for the contact form */
.container-popup {
  color: white;
  outline: none;
  visibility: hidden;
  display: flex;
  flex-direction: column;
  transform: scale(0.05);
  transition: transform 0.15s;
}

.popup-open {
  visibility: visible;
  transform: scale(1);
  position: absolute;
  left: 0;
  top: 0;
  right: 0px;
  bottom: 0px;
}

.popup-window {
  background-color: white;
  color: black;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.form-contact-me *{
  display: block;
  margin-top: 4px;
}

.form-contact-me {
  padding: 80px;

}

.form-button {
  padding: 4px 10px;
  border: none;
  outline: none;
  border-radius: 5px;
  font-weight: bold;
}

