@charset "UTF-8";

html, body * {
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
  
    padding: 0;
    font-family: 'Mixta', sans-serif;
    background-color: rgb(255, 255, 255);
}

div#contact-me {
    display: flex;
    flex-direction: column;
    align-items: center;
}


h1 {
    color: #5D5FEF;
    text-align: center;
    font-family: "mixta-pro", serif;
    font-weight: 700;
    font-style: normal;
    margin: 0 auto;
    margin-bottom: 1rem;
}

input {
    border-radius: 8px;
    width: 436px;
    height: 30px;
    border: 1.5px solid #D9D9D9;
    padding: 1rem;
    
}
textarea#message {
    border-radius: 8px;
    width: 436px;
    height: 120px;
    border: 1.5px solid #D9D9D9;
    padding: 1rem;
    
}


label {
    font-family: "mixta-sharp", serif;
    font-weight: 700;
    font-style: normal;
    color: #5D5FEF;
    font-size: 18px;
}
#name::placeholder,
#email::placeholder,
#subject::placeholder,
#message::placeholder,
#id::placeholder {
    color: #5D5FEF;
    text-align: left;
    font-size: 14px;
    font-family: "open-sans", sans-serif;
    font-weight: 300;
    font-style: normal;
}

input#send {
    cursor: pointer; /* Add hover effect */
    background-color: #5D5FEF;
    height: 50px;
}


#send{
    font-family: "mixta-sharp", serif;
    font-weight: 700;
    font-style: normal;
    color: white;
    font-size: 18px;
    border-radius: 15px; 
   
  
}

