body {
    display: flex;
    background-color: #b2bbf8;
    align-items: center;
    justify-content: center;
    height: 95vh;
}

.form-flex {
    display: flex;
    flex-direction: column;
    color: rgb(50, 0, 189);
    width: 250px;
    flex-wrap: column wrap;
}

.sendButton {
    background-color: #632eff7f;
    border: none;
    color: white;
    padding: 10px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 50px;
    font-family: 'Courier New', Courier, monospace;
    box-shadow: 5px 5px #ffffff00;
    border: #1100ff3d 2px solid;
}

.Boxes {
    border-radius: 5px;
    border: #0066ff2d 2px solid;
    background-color: #ffffffc8;
}

.sendButton:hover {
    box-shadow: 5px 5px #0000003d;
    transform: scale(1.025);
    transition: 0.15s;
}

.Comments {
    resize: none;
    height: 70px;
    border-radius: 5px;
    border: #0066ff2d 2px solid;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande',
     'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    background-color: #ffffffc8;
}

form {
    display: flex;
    flex-direction: column;
    background-color: rgba(0, 132, 255, 0.325);
    width: fit-content;
    align-content: center;
    justify-content: center;
    border-radius: 10px;
    border: #7b4fff2d 5px solid;
    padding: 5px 15px 5px 15px;
    font-family: 'Courier New', Courier, monospace;
}

.thankYou {
    color: rgba(0, 31, 117, 0.875);
}