*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}
.container{
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)),url('/pexels-miguel-á-padriñán-1111317.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.hypo-container{
    border: 1px solid rgba(0, 0, 0, 0.096);
    width: 400px;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.02), 0 6.7px 5.3px rgba(0, 0, 0, 0.028), 0 12.5px 10px rgba(0, 0, 0, 0.035), 0 22.3px 17.9px rgba(0, 0, 0, 0.042), 0 41.8px 33.4px rgba(0, 0, 0, 0.05), 0 100px 80px rgba(0, 0, 0, 0.07);
}
.hypo-container img{
    width: 100px;
    margin-bottom: 10px;
    border-radius: 1px;
}
.output{
}
.hypo-container h3{
}
.hypo-container form{
    margin: 15px 0;
}
.hypo-container input{
    padding: 10px;
    margin: 5px;
    border-radius: 5px;
    border: 0.5px solid rgb(108, 99, 255);
    width: 100%;
}
.hypo-container input:focus{
    outline: none;
}
.hypo-container button{
    margin-top: 20px;
    padding: 10px 20px;
    cursor: pointer;
    background-color: rgb(108, 99, 255);
    color: #fff;
    border: 0.5px solid rgba(0, 0, 0, 0);
    transition: 0.2s all;
    border-radius: 5px;
}

.hypo-container button:hover{
   background-color: #453eca;
}