/* 
body{
  background-color: black;
}
div.container{
    width: 500px;
    margin: auto;
    margin-top: 90px;
    background-color: black;
}


h1{
    text-align: center;
    color: white;
}

div.container img{
  padding-top: 15px;
  padding-left: 150px;
  padding-bottom: 15px;
}

div {
    margin: 20px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
    animation: fadeIn 1s ease-in-out;
  }

  .button{
    background-color: black;
    width: 60px;
    height: 25px;
    color: black;
    cursor: pointer;
    align-items: center;
    text-align: center;
    margin: auto;
    padding: 1px 1px 1px 1px;
  }
  #btn{
    cursor: pointer;
  }
  

  label {
    font-weight: bold;
    margin-right: 10px;
    animation: slideLeft 1s ease-in-out;
  }
  

  span {
    font-weight: normal;
    animation: slideRight 1s ease-in-out;
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  

  @keyframes slideLeft {
    from { transform: translateX(-50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
  }

  @keyframes slideRight {
    from { transform: translateX(50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
  }
  

  @media only screen and (max-width: 768px) {

    div {
      margin: 10px;
      padding: 5px;
    }
    label {
      font-size: 14px;
      margin-right: 5px;
    }
    span {
      font-size: 14px;
    }
  }
  
  @media only screen and (max-width: 480px) {

    div {
      margin: 5px;
      padding: 2px;
    }
    label {
      font-size: 12px;
      margin-right: 2px;
    }
    span {
      font-size: 12px;
    }
  }
  
  
 */

 /* Reset some default browser styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}



.container {
  background-color: #ffffff; /* White background */
  width: 400px; /* Container width */
  padding: 20px; /* Padding */
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3); /* Shadow */
  text-align: center;
  color: #333; /* Text color */
  transform: scale(1); /* Initial scale for animation */
  transition: transform 0.5s ease-in-out; /* Animation transition */
}

/* Add hover animation */
.container:hover {
  transform: scale(1.05); /* Scale up on hover */
}

h1 {
  font-size: 24px;
  margin-bottom: 10px;
}

img {
  max-width: 100%;
  border-radius: 10px;
  margin: 10px 0;
}

h3 {
  font-size: 20px;
}

span {
  font-size: 16px;
  display: block;
  margin: 10px 0;
  color: #555; /* Slightly darker gray text */
}

.button {
  margin: 20px 0;
}

button {
  padding: 10px 20px;
  background-color: #525DE0; /* Blue button background */
  color: #fff; /* White text */
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
}

button:hover {
  background-color: #444ABF; /* Darker blue on hover */
}





body {
  background: #f3f4f6;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
}

.container {
  background-color: #ffffff;
  width: 400px;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  color: #333;
  transition: transform 0.3s; /* Add transition for smooth hover effect */
}

/* Add hover effect to rotate and move the container */

@keyframes tiltBackground {
  0% {
    transform: perspective(1000px) rotateX(20deg);
  }
  100% {
    transform: perspective(1000px) rotateX(25deg);
  }
}



