@font-face {
  font-family: 'Press Start 2P';
  src: url('https://static.igem.wiki/teams/5406/fonts/press-start-2p/pressstart2p-regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

:root {
  --color-background: #008080;
  --color-white: #fdffff;
  --color-grey_light: #c3c3c3;
  --color-grey_dark: #818181;
  --color-black: #000000;
  --color-blue: #010081;
  --color-pink: #FF0081;
}

body {
  background-color: var(--color-background);
  color: var(--color-black);
  font-family: 'Press Start 2P', Arial, sans-serif;
}


.computer-container {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  height: 100vh;
  padding: 0 20px;
}

.left-icons, .right-icons {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.icon-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 22.33%;
  justify-content: center;
  position: relative;
}

.icon-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--color-black);
}

.icon {
  width: 64px;
  height: 64px;
  margin-bottom: 10px;
}

.caption {
  text-align: center;
  font-size: 1.125em;
}

.button-group {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: none;
  flex-direction: column;
  gap: 10px;
}

.button-group.active {
  display: flex;
}

.button-group.left {
  right: calc(100% + 10px);
}

.button-group.right {
  left: calc(100% + 10px);
}

.rect-button {
  z-index: 10000;
  background-color: var(--color-white);
  color: var(--color-black);
  border: none;
  padding: 5px 10px;
  cursor: pointer;
  white-space: nowrap;
}

.rect-button:hover {
  background-color: var(--color-grey_light);
}

.center-image {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
}

#centerLogo {
  max-width: 550px;
  height: auto;
}
  
  #clickMeButton {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 10px 20px;
    background-color: var(--color-grey_light);
    color: var(--color-background);
    border: none;
    cursor: pointer;
    font-size: 16px;
    display: none;
  }
  
  #clickMeButton:hover {
    background-color: var(--color-white);
  }
  
  /* You can adjust these variables to control spacing and size */
  .icon-wrapper {
    --icon-size: 96px;
    --vertical-spacing: 0px;
    --text-distance: 5px;
  }
  
  .icon {
    width: var(--icon-size);
    height: var(--icon-size);
    margin-bottom: var(--text-distance);
  }
  
  .icon-wrapper {
    margin: var(--vertical-spacing) 0;
  }

  .faux-window {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 55%;
    height: 75%;
    background-color: var(--color-white);
    border: 7px solid var(--color-grey_light);
    box-shadow: 2px 2px 0 rgba(0,0,0,0.2);
  }
  
  .window-titlebar {
    background-color: var(--color-blue);
    color: var(--color-white);
    padding: 2px 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  

  
  .close-button {
    width: 24px;
    height: 24px;
    cursor: pointer;
  }
  
  .window-content {
    height: calc(100% - 24px);
    overflow-y: auto;
    background-color: var(--color-white);
    border: 2px inset var(--color-grey_light);
  }
  
  .content-area {
    padding: 10px;
  }
  
  /* Scrollbar styles */
  .window-content::-webkit-scrollbar {
    width: 16px;
  }
  
  .window-content::-webkit-scrollbar-track {
    background-color: var(--color-grey_dark);
    width: 20px
    
  }
  
  .window-content::-webkit-scrollbar-thumb {
    background-color: var(--color-grey_light);
    width: 6px
   
  }
  
  .window-content::-webkit-scrollbar-button { 
    display:none;
   }
  
  
  /* Ensure the faux window is on top of other elements */
  .faux-window {
    z-index: 1000;
  }

  .container{
    margin-left:0;
    margin-right: 0;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  a:hover{
    color:var(--color-white)
  }