
/*--------------------------------------------------Body--------------------------------------------------*/

body {

    background-color: floralwhite;
    margin: 0;
    padding: 0;
}

/*--------------------------------------------------Go back--------------------------------------------------*/

.goback {

    background-color:lightgreen; 
    font-size:10px;
}

/*--------------------------------------------------Image--------------------------------------------------*/

.image {

    max-width: 100%;
    height:auto;
}

.contained {
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 10px rgba(0.8, 0.6, 0.4, 1);
    background-color: white;
    border:0.1px white;
    margin-bottom: 50px;
    margin-top: 50px;
    border-radius: 30px;
    padding-top: 10px;
    padding-bottom: 10px;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 2s, transform 2s;
}

.contained.enter {

    opacity: 1;
    transform: translateX(0);
}

@keyframes enter {

  0% {

    opacity: 0;
    transform: translateX(20px);
  }
  
  100% {

    opacity: 1;
    transform: translateX(0);
  }
}

.contained.enter {

  animation: enter 3s ease-in-out;
}

/*--------------------------------------------------Submit and Reset--------------------------------------------------*/

.mybtn {

   background-color: whitesmoke;
   text-align: center;
   display: inline-block;
   font-size: 15px;
   cursor: pointer;
   padding: 3px 5px;
   border:2px solid #000;
   border-radius: 20px;
   text-decoration: none;
   color: #000;
   box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
   font-weight: bold;
   transition: box-shadow 0.3s ease;
}

.mybtn:hover {

     background-color: #d0d0d0;
     box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
}

/*--------------------------------------------------Probability Output--------------------------------------------------*/

.probability-container {

  display: flex;
  align-items: center;
  margin-top: 10px;
}

.probability-container label {

  margin-right: 10px;
}

#probability-result {

  width: 150px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  color: blue;
}

/*--------------------------------------------------Footer----------------------------------------------------------------*/

footer {
  
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px; /* Change this to your desired height */
  background-color: whitesmoke;
  margin-top: 15px;
 }

