body{
    background-color: rgb(31, 30, 30);
 }
 @media screen and (max-width:980px) {
     body{
         background-color: rgb(29, 28, 28);
         zoom: block;
     }
 }
.container{
    display: grid;
    grid-template-columns: auto auto;
    margin-top: 100px;
    margin-left: 500;
    margin-right: 500px;
}
@media screen and (max-width:980px) {
    .container{
        display: grid;
        grid-template-columns: auto auto;
        margin-top: 100px;
        margin-left: 270px;
        margin-right: 100px;
    }
    
}
.dropdown-container{
    width: 100px;
    height: 60px;
}
@media screen and (max-width:980px) {
    .dropdown-container{
        width: 130px;
        height: 90px;
    }
}
.translator-input{
    width: 150px;
    height: 30px;
    align-items: center;
    
}
.translator-output{
    width: 150px;
    height: 30px;
    align-items: center;
}
.container2{
    display: grid;
    grid-template-columns: auto auto;
    margin-top: 10px;
    margin-left: 30px;
    margin-right: 5px;
    padding-left: 10px;
    padding-right: 30px;

}
@media screen and (max-width:980px) {
    .container2{
        display: grid;
        grid-template-columns: auto;
        margin-top: 40px;
        margin-left: 10px;
        margin-right: 5px;
        padding-left: 80px;
        padding-right: 80px;
    
    }
}
.input{
    height: 200px;
    width: 600px;
    resize: none;
    box-shadow: 4px 4px 4px 4px rgb(33, 129, 3);
}
@media screen and (max-width:980px) {
    .input{
        height: 300px;
        width: 800px;
        resize: none;
        box-shadow: 4px 4px 4px 4px rgb(33, 129, 3);
        font-size: 30px;
        margin-bottom: 30px;
    }
}
.btn-translate{
    margin-top: 30px;
    background-color: blue;
    color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  letter-spacing: 2px;
  cursor: pointer;
  margin-left: 220px;
}
@media screen and (max-width:980px) {
    .btn-translate{
        margin-top: 20px;
        background-color: blue;
        color: white;
      padding: 15px 32px;
      text-align: center;
      text-decoration: none;
      display: inline-block;
      font-size: 30px;
      letter-spacing: 2px;
      cursor: pointer;
      margin-left: 300px;
      margin-bottom: 40px;
    }
}
.out{
    height: 200px;
         width: 600px;
         resize: none;
         box-shadow: 4px 4px 4px 4px rgb(134, 25, 9);
         font-size: 30px;
}
@media screen and (max-width:980px) {
    .out{
        height: 300px;
             width: 800px;
             resize: none;
             box-shadow: 4px 4px 4px 4px rgb(134, 25, 9);
             font-size: 30px;
             margin-top: 50px;
    }
}
.head{
    color: white;
    margin-left: 500px;
    margin-top: 50px;
}
@media screen and (max-width:980px) {
    .head{
        color: white;
        margin-left: 340px;
        margin-top: 200px;
    }
}