:root{
     --lightcard: #f4f5fa;
     --darkcard: #0d0d0d;
}

body {
  font-family: 'Nunito', Arial, sans-serif;
  background: #FFF;
  color: #222;
}

.contentSection {
  width: 100%;
  background-color: #f4f5fa;
  padding: 2rem;
  border-radius: 0.8rem;
  margin-bottom: 0.7rem;
}

.contentSection h1{
     font-size: 2rem;
     font-weight: 700;
     margin-bottom: 0.5rem;
}

.contentSection p{
     font-size: 1rem;
     margin-bottom: 2rem;
}

#name, #email, #message{
     width:100%;
     border: none;
     background-color: white;
     font-size: 0.9rem;
     padding: 1rem 0.5rem;
     margin-bottom: 1rem;
     border-radius: 0.7rem;
}

.contentSection #message{
     width: 100%;       
     height: 10rem;    
     resize: none;    
     overflow-y: auto;
     font-family: 'Nunito', Arial, sans-serif;
     font-size: 1rem;
     font-weight: 500;
}

form input:focus, form textarea:focus {
  border: none;
  outline: none;
}

.contentSection #sendbutton{
     width: 100%;
     color: white;
     background-color:var(--darkcard) ;
     border-radius: 1rem;
     padding: 1.2rem 0rem;
     font-weight: 700;
}

.social a{
     color: #0d0d0d;
     text-decoration: none;
}

.social .contentSection{
     display: flex;
     gap: 0.7rem;
     align-items: center;
     align-self: center;
     align-content: center;
     justify-content: space-between;
}

.social .contentSection i{
  font-size: 1.8rem;
}

.social .contentSection div{
     width: 100%;
}

.social .contentSection .nav-arrow{
     transform: rotate(45deg);
}


