*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
img{
    height: 100%;
}
.window{
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    margin-top: 20px;
}
#result{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 20px;
    width: 75%;
    flex-wrap: wrap;
}
.penal{
    width: 25%;
    border: 2px solid crimson;
    margin: 20% 10px;
}

.card{
    width: 24%;
    margin-right: 1%;
    margin-bottom: 10px;
}
.card .name {
    background: #e7e7e7;
    text-align: center;
    padding: 9px 0px;
    font-family: sans-serif;
    font-weight: 600;
    color: #a900ff;
    border-radius: 30px;
    text-shadow: 0px 0px 5px #0000006b;
}
.card .profile_image {
    border: 6px solid green;
    border-radius: 50%;
    overflow: hidden;
    height: 150px;
    width: 150px;
    margin: 20px auto;
}
.card .title {
    text-align: center;
    font-weight: bold;
    font-family: cursive;
    margin-bottom: 15px;
    color: crimson;
}
.card {
    width: 24%;
    padding: 20px;
    border: 2px solid crimson;
    border-radius: 20px 0px;
}
input.form-control {
    width: 90%;
    padding: 10px 10px;
    margin: 6px 8px;
    border: 0;
    outline: 0;
    border-radius: 50px;
    box-shadow: 0px 0px 10px #c7c7c7;
}
#send {
    padding: 10px 0px;
    width: 90%;
    margin: 6px 8px;
    border-radius: 50pc;
    border: 0;
    background: white;
    box-shadow: 0px 0px 10px green;
    transition: .4s;
    cursor: pointer;
}
#send:hover {
    background: green;
    color: white;
    box-shadow: 0px 0px 0px white;
}