body {
    background: rgb(23, 23, 23);
    color: rgb(211, 211, 211);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

*{
    box-sizing: border-box;
}

h2 {
    font-size: 18px;
}

img {
    height: 200px;
    width: 300px;
    opacity: 1;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.banner {
  background-color: rgb(23, 23, 23); /* Change to your brand color */
  color: rgb(211, 211,211);
  text-align: center;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.navbar {
  background-color: rgb(50, 50, 50); /* Change to your brand color */
  color: rgb(23, 23, 23);
  text-align: center;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

a:link, a:visited {
  background-color: rgb(50, 50, 50);
  color: rgb(211, 211, 211);
  padding: 15px 60px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}

a:hover, a:active {
  background-color: rgb(211, 211, 211);
  color: rgb(23, 23, 23);
}

.container:hover .experience.jpg {
  opacity 0;
  transition: opacity 0.5s ease;
}

/* Bordered form */
form {
  border: 3px solid #f1f1f1;
}

/* Full-width inputs */
input[type=text], input[type=password] {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

/* Set a style for all buttons */
button {
  background-color: #04AA6D;
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  cursor: pointer;
  width: 100%;
}

/* Add a hover effect for buttons */
button:hover {
  opacity: 0.8;
}

/* Extra style for the cancel button (red) */
.cancelbtn {
  width: auto;
  padding: 10px 18px;
  background-color: #f44336;
}

/* Center the avatar image inside this container */
.imgcontainer {
  text-align: center;
  margin: 5px 0 12px 0;
}

/* Avatar image */
img.avatar {
  width: 40%;
  border-radius: 50%;
}

/* Add padding to containers */
.container {
  position: relative;
  padding: 8px;
  display: flex;              
  flex-wrap: wrap; 
  justify-content: space-around; 
  align-items: center;        
  height: 300px;
            
}

/* The "Forgot password" text */
span.psw {
  float: right;
  padding-top: 16px;
}

/* Change styles for span and cancel button on extra small screens */
@media screen and (max-width: 300px) {
  span.psw {
    display: block;
    float: none;
  }
  .cancelbtn {
    width: 100%;
  }
}

.box{
    width: fit-content; 
    box-sizing: content-box;
    border: 1px #333;     /* Border around the box */
    border-radius: 5px;         /* Rounded corners */
    overflow: hidden;           /* Hide overflow if image is bigger */
    box-shadow: 0 4px 8px rgba(116, 116, 116, 0.2); /* Drop shadow */
    text-align: center;         /* Center text inside */
}
#box1 {
    background-color: rgb(50, 50, 50)

}
#box1 img{
    height: auto; /* Keep aspect ratio */
    -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
    
    display: block;
    
}

#box2{
    background-color: rgb(50, 50, 50) 
}
#box3{
    background-color: rgb(50, 50, 50)
}
#box4{
    background-color: rgb(50, 50, 50)
}