.wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.aboutme {
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.aboutme h2 {
    color: #faa8bf;
    font-family: 'Dawning of a New Day', cursive;
    font-size: 2.5rem;
}

.aboutme img {
    width: 30%;
    min-width: 150px;
    max-width: 300px;
    margin-top: 1rem;
    align-self: center;
    border-radius: 4px;
    -moz-box-shadow:0px 0px 4px #575757;
    -webkit-box-shadow:0px 0px 4px #575757;
    box-shadow:0px 0px 4px #575757;
}

.contactform {
    background-color: #fff5f6;
    background-image: linear-gradient(to top, #fff5f6, #FFEFF1);
    padding: 2rem;
}

.contactform h2 {
    color: #faa8bf;
    margin-bottom: 0.7rem;
}

form input {
    width: 100%;
    margin: 0.3rem 0;
    margin-bottom: 0.6rem;
    border-radius: 4px;
    border: solid 1px grey;
    height: 25px;
}

input, textarea {
    display: block;
}

input, .msg {
    margin: 0.2rem auto;
    border-style: solid;
    border-color: grey;
    border-width: 1px;
    background-color: white;
    border-radius: 7px;
    height: 3rem;
    width: 75%;
    outline: none;
    padding-left: 0.2rem;
    font-size: 0.9rem;
    text-align: left;
    color: #ACACAC;
}

/*Normal placeholders*/
::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #aaa;
    font-style: italic;
    opacity: 1; /* Firefox */ 
}
  :-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #aaa;
    font-style: italic;
}
  ::-ms-input-placeholder { /* Microsoft Edge */
    color: #aaa;
    font-style: italic;
}

  .msg {
    height: 150px;
    width: 100%;
    padding: 0.2rem;
    resize: none;
}

.wrapper .Btn {
    background-color: #faa8bf;
    border: none;
    margin-top: 0.8rem;
    cursor: pointer;
}

input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus{
  -webkit-text-fill-color: #faa8bf;
  box-shadow: 0 0 0 1000px white inset;
  -webkit-box-shadow: 0 0 0 1000px white inset;
}

/*Responsive*/
@media (max-width: 770px){
    .wrapper{
        grid-template-columns: repeat(1, 1fr);
    }
    .wrapper .aboutme {
        order: 2;
    }
    .wrapper .contactform {
        order: 1;
    }
}