 body {
 background: linear-gradient(-45deg, #9a1fff, #a940ff, #be73ff, #917aff);
 background-size: 400% 400%;
 animation: gradient 15s ease infinite;
 height: 100vh;
 font-family: 'Roboto', sans-serif;
 margin: 0
 display: flex;
 justify-content: center;
 align-items: center;
 overflow: hidden;
 color: white;
 display: flex;
}
@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.tab-box {
width: 80%;
margin: 50px auto;
padding: 20px;
background: rgba(207,207,207,0.3); /* Semi-transparent background */
border-radius: 20px; 
backdrop-filter: blur(10px); 
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); 
}

/* Tab content styling */
.tab-content {
display: none;
margin-top: 20px;
padding: 20px;
background-color: rgba(255, 255, 255, 0.3);
border-radius: 20px;
backdrop-filter: blur(15px); /* Apply the blur effect */
color: black;
text-align: center;
}

/* Show active content */
.tab-content.active {
display: block;
}

/* Tab buttons inside the box */
.tab-button {
background-color: rgba(112,29,219,0.458);
border: none;
color: white;
padding: 10px 20px;
font-size: 18px;
cursor: pointer;
margin: 10px;
border-radius: 20px; /* Rounded corners for buttons */
backdrop-filter: blur(5px);
transition: background-color 0.3s ease;
display: inline-block;
}

/* Active tab button style */
.tab-button.active {
background-color: rgba(191,146,255,0.572);
color: white;
}
 
/* Change button color on hover */
.tab-button:hover {
background-color: rgba(191,146,255,0.572);
}
img {
 width: 70px;
 height: 70px;
}
h2 {
color: white;
}    
 
p {
color white;
}
  
h1 {
color: white;
}

@media (max-width: 1200px) {
 html {
zoom: 0.75; =
 }
}
 
 @media (max-width: 800px) {
  html {
 zoom: 0.5; 
 }
}
