body {
    background-color: #8ce7eb;
    font-family: 'Trebuchet MS', sans-serif;
    background-image: url('dfgdfgdfgdfgdf.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin: 0;
    padding: 0;
    height: 100vh;
    
  }
  
  .welcome {
    border-radius: 10px;
    border: 4mm ridge rgba(11, 223, 141, 0.6);
    width: fit-content;
    padding: 14px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #8ce7eb;
    flex-direction: column;
    z-index: 100;
  }
  
  .welcome h1 {
    margin: 4px;
  }

.bar{
    position: absolute;
     width: 100%; 
     display: flex; 
     backdrop-filter: blur(10px); 
    background-color: rgba(0, 4, 255, 0.616);
     color: #fff;
      justify-content:space-around;
      z-index: 1000;
}

.white-trans-left{
    margin-left: 16px;
    background-color: rgba(249, 80, 255, 0.6);
    padding: 4px 12px;
    border-radius: 16px;
}

.white-trans-right{
    margin-right: 16px;
    background-color: rgba(249, 80, 255, 0.6);
    padding: 4px 12px;
    border-radius: 16px;
}
.white-trans-mid{
    margin-right: 16px;
    margin-left: 16px;
    background-color: rgba(124, 214, 21, 0.6);
    padding: 4px 12px;
    border-radius: 16px;
}
.welcomeheader{
    width: 100%;
    display: flex;
    align-items: center;
    cursor: move;
    justify-content: center;
    margin-top: 8px;
    background-color: gray;
    border-radius: 6px;
}
.close{
    width: fit-content;
    display: flex;
    cursor: pointer;
    justify-content: center;
    margin-top: 8px;
    background-color: red;
    border-radius: 6px;

}
.open{
    width: fit-content;
    display: flex;
    cursor: pointer;
    justify-content: center;
    margin-top: 8px;
    background-color: greenyellow;
    border-radius: 6px;
    height: 26px;
    width: fit-content;
    padding-left: 5px;
    padding-right: 5px;
    border:2mm ridge rgb(53, 221, 19);
    padding: 0px 2px;
    height: 18px;
    line-height: 1
}
.taskbar{
    position: fixed;
    bottom: 0;
  left: 0;
  width: 100%;
  height: 48px;
     width: 100%; 
     display: flex; 
     backdrop-filter: blur(10px); 
    background-color: rgb(114, 114, 114);
     color: #696969;
      justify-content:space-around;
      border-color: black;
      border:4mm ridge black;
}


.selected {
    background-color: rgba(255, 255, 255, 0.3);
    border: 2px dashed rgba(255, 255, 255, 0.8);
    border-radius: 12px;
}

.contact-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
    text-decoration: none;
    padding: 10px 14px;
    border-radius: 8px;
    font-weight: bold;
    transition: transform 0.15s ease, filter 0.15s ease;
}

.contact-card:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.contact-card.yt { background: #ff0000; }
.contact-card.gh { background: #24292e; }
.contact-card.discord { background: #5865F2; }
.contact-card.email { background: #333333; }

.copy-btn {
    background: rgba(255, 255, 255, 0.25);
    border: none;
    color: white;
    padding: 4px 10px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    font-size: 12px;
    transition: background 0.2s ease;
}

.copy-btn:hover {
    background: rgba(255, 255, 255, 0.4);
}