@font-face {
    font-family: 'Luckiest Guy';
    src: url('LuckiestGuy-Regular.ttf') format('truetype'); 
}

body {
  margin: 0;
  padding: 0;
}

#header{
  margin-top: 20px;
  left: 0;
  height: 100px; 
  width: 100%;
  padding: 0 10px; 
  font-family: 'Luckiest Guy';
}
#header img {
  width: 250px; 
  height: auto; 
  object-fit: contain;
  float: left;
}

ul{
    float: right;
    margin-right: 100px;
    list-style-type:none;
    margin-top: 20px;
    padding: 10px;
  }
  
  li{
    position: relative;
    display:inline-block; 
    padding:2px 10px;
    text-align:center;
  }
  
  .nav{ 
    color: black;
    font-size: 40px;
    text-decoration:none;
  }
  .nav:hover{
    color: #ffa089;
    font-size: 50px;
  }

#container{
    margin: 50px auto; 
    width: 65%;
    padding: 2em 5em;
    text-align: center;
    font-size: 30px;
}

textarea{
    width: 100%;
    height: 500px;
    padding: 12px 20px;
    box-sizing: border-box;
    border: 2px solid transparent;
    border-radius: 4px;
    background-color: #ffa089;
    font-size: 25px;
    color: black;
    resize: none;
  }
  
  input{
    width: 200px;
    height: 60px;
    background-color: #ffa089;
    border: 2px solid transparent;
    border-radius: 4px;
    color: black;
    cursor: pointer;
    font-size: 20px;
    line-height: 50px;
    text-align: center;
    padding: 0;
    margin: 0 auto;
  }
  
  input:hover{
    background-color: black;
    line-height: 50px;
    color: white;
  }
  
  h1{
      font-size: 60px;
  }