body {
    background-color: #000000ea;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 0;
    font-family: Arial, sans-serif;
}
.contact-form {
    display: flex;
    flex-direction: column;
    align-items:center;
    padding: 20px;
}

.side1{
flex: 1;
    margin-right: 30px;
}
.profile-image {
    width: 85%;
    border-radius: 140px;
}
.side2{
    flex: 2;
    background-color: brown;
    border-radius: 10px;
    padding: 20px;
    

}
h1 {
    color: white;
    margin-bottom: 20px;
}
.input {
    outline: none;
    width: 96%;
    padding: 11px;
    border-radius: 12px;
    border: none;
    margin-top: 10px;
}

.button-group {
    display: flex;
    justify-content: space-between; /* hayla */
    margin-top: 15px;
}

.button{  
 height: 35px;
    width:10%;
    border-radius: 20px;
    padding: 4px 14px;
    background-color: #f3eeeef1;
    border: none;
    cursor: pointer;
    font-size:14px ;
     transition: background-color 0.2s;
     font-weight:bold ;
}
.button:hover{
  background-color: rgb(3, 0, 0);
  color: white;
  
}
 
.input:hover{
  transform: scale(1.06);
  transition: 0.5s;
   }
   textarea{
    resize: none;
    width: 50%; 
    height: 70px

   }
 /*pc */
   @media (min-width: 768px) {
    .contact-form {
        flex-direction: row; 
        justify-content: center;
    }

    .side1 {
        flex: 1;
        margin-right: 30px;
    }

    .side2 {
        flex: 2;
        margin-left: 0;
    }

    .input, .button {
        width: 90%; 
    }
}

/*  mobile */
@media (max-width: 767px) {
    .input, .button {
        width: 100%; 
    }

    .button-group {
        flex-direction: column; 
        align-items: stretch; 
    }

    .button {
        width: 100%; 
        margin-top: 10px; 
    }
    .side2{
        margin-right: 5%;
      
    }
    .side1{
        margin-left: 5%;
    }
    .input{
        width: 88%;
    }
 }
strong{
    color: white;
    margin-left: 30%;
}
p{
    color: white;
    font-weight: bold;
   margin-left:30px;
}
.github a{
    color:white;
    text-decoration: none;
     margin: center;
}
