.mail-icon{
    width: 300px;
    margin-bottom: -80px;
    margin-top: -40px;
}
.contact-form{
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: rgb(255, 200, 245);
    padding:12px;
    padding-left: 16px;
    border-radius: 8px;
    font-family: "Roboto Mono";
}
.contact-form input{
    border-style: solid;
    border-color: rgb(255, 140, 221);
    width: 300px;
    border-radius: 20px;
    padding-left:12px;
    padding-right: 12px;
    padding-top:6px;
    padding-bottom:6px;
    margin-bottom: 12px;
    margin-top:4px;
}
.contact-form textarea{
    border-style: solid;
    border-color: rgb(255, 140, 221);
    width: 300px;
    border-radius: 20px;
    padding-left:12px;
    padding-right: 12px;
    padding-top:6px;
    padding-bottom:6px;
    margin-bottom: 12px;
    margin-top:4px;
    border-bottom-right-radius: 2px;
}
.contact-form button{
    margin-bottom: 12px;
    width: fit-content;
    height: 30px;
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    font-family: "Roboto Mono", monospace;
    border-style: solid;
    border-color: rgb(0, 0, 0);
    transition-duration: 0.2s;
    border-radius: 0px;
    justify-content: top;
    align-items: left;
    flex-direction: column;
    border-width: 1px;
}
.contact-form button:hover{
    background-color: rgb(255, 20, 204);
    color: rgb(255, 255, 255);
    border-color: rgb(255, 255, 255);
    transition-duration: 0.2s;
    cursor: pointer;
}