body {
  margin: 0;
  height: 100vh;
  background-image: url("../images/background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}

.round-button {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  /*background-color: #7ce2f8;*/ 
  background-color: #000000; 
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 40px;
  font-weight: bold;
  font-family: Arial, sans-serif; 
  text-decoration: none;
  cursor: pointer;
  opacity: 0; 
}

/* Show the button when hovered over */
.round-button:hover {
  opacity: 1;
}

/* Style for the link text */
.round-button-link {
  color: white;
  text-decoration: none;
}

.logo-center {
  text-align: center;
}

.logo-welcome {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#logo-img,
#welcome-img {
  max-width: 250px; /* Adjust the size as needed */
  max-height: 250px; /* Adjust the size as needed */
  display: block;
}

#welcome-img {
  display: none;
}