.container {
    width: 100%;
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;

}

.middle {
    width: 40%;
    height: 40vh;
    background-color: rgba(102, 0, 255, 0.043);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 5%;
}

.middle h3 {
    font-size: 30px;
    margin-top: -10px;
    margin-bottom: 10px;
}

.middle textarea {
    width: 60%;
    height: 50%;
    color: black;
    padding: 10px;
    font-size: 20px;
}

.middle p {
    margin-top: 2%;
}

.middle button {
    margin-top: 2%; 
    width: 20%;
    height: 10%;
    font-size: 20px;
    background-color: transparent;
    border: none;
    border: 1px solid white;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
}

.result {
    width: 100%;
    height:160px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #341c5135;
}

.result h3 {
    font-size: 30px;
}

.result p#result {
    font-size: 30px;
}

.result p#tebrikler {
    margin-top:10px;
    font-size: 20px;
}

@media screen and (max-width: 992px) {
 .middle {
  width:80%;
  }
}
