:root {

  font-size: 62.5%;

  --main-font: sans-serif;
  --main-color: #333;

  /* Add subtitle font weight and color variables */
  --subtitle-font-weight: light;
  --subtitle-color: #555;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--main-font);
  color: var(--main-color);
}

.main {
    display: flex;
    justify-content: space-evenly;
    margin-top: 5vw;
    margin-left: 5vw;
    overflow: hidden;
    
}


.nav {
    
    padding: 0;
    margin: 0;
}


.nav a{

    position: fixed;
    color: var(--main-color);
    text-decoration: none;
    font-size: 2.8em;
    line-height: 1.5;
    margin: 0;
    padding: 0;
}


.container2{

    width: 60vw;
    height: auto;
    margin: auto;
    
    
}
  
  
.main a:hover {
    text-decoration: none;
 }
  

  
  .contact{
    display: block;
    flex-direction: column;
    justify-content: center;
    align-items: center;

  }
  
  
  
  input[type=text], [type=email], textarea, [type=submit] {
   width: 100%;
   background: transparent;
   border: none;
   /* border-bottom: 1px solid #349af9; */
   border-bottom: 1px solid #000033;
   padding: 12px 0;
   resize: vertical;
   color: #000;
   font-size: 16px;
   font-family: var(--main-font);
   font-style: normal;
  }
  
  
  button[type=submit] {
    color: rgb(22, 22, 22);
    padding: 7px 20px;
    border: 1px solid #000033;
    border-radius: 50px;
    cursor: pointer;  
    transition: 0.7s;
    margin-top: 20px;
    font-family: var(--main-font);
  
  }
  
  input[type=text]:focus, [type=email]:focus, textarea:focus {
  background: rgba(76, 175, 80, 0.1);
  border: none;
  border-radius: 5px;
  }
  
  button[type=submit]:hover {
  
    color: cornsilk;
    background-image: linear-gradient(to left, #4db8ff, #b3ff99);
    border: none;
    transition: 0.7s;
  
  }


  @media screen and (min-width: 1400px) {
    .container2{
    
      width: 30vw;
    }

  }