* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Times New Roman', Times, serif;
}

body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(51, 156, 156);
}
header {
    background-color: #4CAF50;
    color: white;
    margin-right: 18%;
   margin-top: 15px;
    display: flex;
    justify-content: center;
    padding: 2rem;
    border-radius: 15px;
}

h1 {
    margin: 0;
    font-size: 2.5rem;
    font-family: 'Times New Roman', Times, serif;
}
.container {
    width: 400px;
    background: rgb(154, 133, 114);
    padding: 25px 35px;
    border-radius: 10px;
    box-shadow: 10px 10px 10px rgba(244, 131, 131, 0.5);
}

.container h2 {
    display: flex;
    justify-content: center;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 30px;
    color: cornflowerblue;
    
}

.container input {
    width: 50%;
    height: 100px;
    padding: 10px;
    border: 1px solid rgb(24, 12, 12);
    outline: none;
    border-radius: 20px;
    box-shadow: 3px 4px 5px rgba(0, 0, 0, 0.1) inset;
    margin-bottom: 30px;
}

.btn {
    width: 100%;
    height: 50px;
    border-radius: 10px;
    outline: none;
    background: rgb(126, 77, 126);
    color: white;
    font-size: 18px;
    font-weight: 500;
    text-decoration:darksalmon;
    cursor: pointer;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    margin: 20px 0;
    transform :0.5s ease;
}
.btn:hover {
  background-color: #2980b9;
  transform: scale(1.1);
}
#img-box {
    width: 200px;
    border-radius: 10px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s;
}

#img-box img {
    width: 100%;
    padding: 10px;
}

#img-box.show-img {
    max-height: 300px;
    margin: 10px auto;
    border: 1px solid rgb(201, 199, 199);
}
.site-footer {
  position: fixed;
  bottom: 0;            
  right: 50px;             
  margin: 0.5em;       
  padding: 0.25em 0.5em; 
  font-size: 15px;     
  color: #0d3511c9;          
  border-top-left-radius: 4px;      
  z-index: 1000;     
  background: transparent;   
}
