*{
    margin: 0;
    box-sizing: border-box;
    font-family: 'Times New Roman', Times, serif;
    padding: 0;
}
.black-ops-one-regular {
  font-family: "Black Ops One", system-ui;
  font-weight: 400;
  font-style: normal;
}

body{
    background-image: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    min-height: 100vh;
}
h1{
    text-align: center;
    margin-top: 50px;
    font-family: "Black Ops One";
    color: #e8e8e8;
}
.container {
    width: 550px;
    padding: 25px 35px;
    border-radius: 15px;
    background-color: rgb(137, 182, 193);
    text-align: center;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    box-shadow: 100px 106px 128px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 30%;
    left: 30%;
}
h4 {
    color: rgb(249, 247, 247);
    margin-bottom: 10px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: bolder;
    font-size: 21px;
}
input {
    width: 450px;
    height: 55px;
    outline: 0;
    padding: 9px;
    margin-top: 10px;
    transition: border-color 0.3s;
    color: rgb(111, 109, 109);
    font-size: 15px;
    font-weight: bold;
}
button {
    width: 100px;
    background-color: rgb(255, 166, 0);
    cursor: pointer;
    padding: 10px;
    border-radius: 10px;
    transition: background-color 0.3s, transform 0.1s;
    margin-top: 10px
}
button:active {
    transform: scale(0.98);
}
#oui{
    width: 200px;
    border-radius: 6px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 1s ease-in-out, margin 0.5s ease;
}
img{
    padding: 10px;
    border-radius: 7px;
    width: 155px;
}
#oui.showimg {
    max-height: 200px;
    margin: 25px 0 10px 0;
    margin-left: 27%;
}
.wrr{
    animation: shake 0.1s linear 10;
}
@keyframes shake {
    0% {
       transform: translateX(0);
    }
    25% {
       transform: translateX(-2px);
    }
    50% {
       transform: translateX(0);
    }
    75% {
       transform: translateX(2px);
    }
    100% {
       transform: translateX(0);
    }
}