

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  :root {
    --primary-color: black;
  }
  
  body {
    background-color: #fdfcfd;
    
    font-family:sans-serif;
  }
  .container {
    max-width: 900px;
    margin: 0 auto;
  }
  .header {
    min-height: 15vh;
    background-color: var(--primary-color);
    border-radius: 0 0 1rem 1rem;
    box-shadow: -1px 5px 32px -5px rgba(143,133,133,0.81);
    display: flex;
    justify-content: center;
    align-items: center;
    
  }
  .nav-heading {
    color: #fff;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 2.8rem;
    text-align: center;
  }
  .main {
    min-height: 55vh;
  }
  
  .main {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .textarea {
    display: block;
    padding: 10px 15px;
    border: 2px solid var(--primary-color);
    font-family: inherit;
    font-size: 1.1rem;
    width: 400px;
    height: 100px;
    border-radius: 2rem;
    margin-bottom: 2rem;
    background: transparent;
    outline: none;
  }
  .translated-text {
    padding: 10px 15px;
    border: 2px solid var(--primary-color);
    height: 100px;
    width: 400px;
    border-radius: 2rem;
    margin-top: 2rem;
    font-size: 1.1rem;
  }
  
  .btn {
    display: block;
    padding: 10px 15px;
    font-family: inherit;
    border-radius: 2rem;
    height: 50px;
    width: 170px;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    font-weight: 700;
    transition: all 0.3s;
  }
  .btn:hover {
    background-color: black;
    color: rgb(238, 238, 238);
  }
  
  .footer {
    min-height: 30vh;
    background-color: var(--primary-color);
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
    display: flex;
    align-items: center;
    border-radius: 1rem 1rem 0 0;
    justify-content: center;
    text-align: center;
  }
  
  .footer-heading {
    font-family: "Bungee Shade", cursive;
    color: #fff;
    font-size: 1.8rem;
    padding: 10px 0;
  }
  
  .footer-text {
    color: #eee;
    padding: 10px 30px;
    font-size: 1.5rem;
  }