body{
    background-color: rgb(24, 24, 24);
}
@media screen and (max-width:980px) {
    body{
        background-color: rgb(24, 24, 24);
    }
    
}
.head{
    text-align: center; 
    color: white; 
    font-size: 30px;
    position: relative;
    top: 15%;
}
@media screen and (max-width:980px) {
    .head{
        text-align: center; 
        color: white; 
        font-size: 30px;
        position: relative;
        top: 10%;
    }
    
}
.grid-container{

    margin-top: 200px;
    display:grid;
    grid-template-columns: auto auto;
    
}
@media screen and (max-width:980px) {
    .grid-container{
        margin-top: 200px;
        display:grid;
        grid-template-columns: auto;
    }
}
.grid-items{
    text-align: center;

}
@media screen and (max-width:980px) {
    .grid-items{
        margin: 50px;
        text-align: center;
    
    }
    
}
.encode-textbox{
    height: 200px;
    width: 600px;
    resize: none;
    box-shadow: 4px 4px 4px 4px rgb(33, 129, 3);
}
@media screen and (max-width:980px) {
    .encode-textbox{
        height: 300px;
        width: 800px;
        resize: none;
        box-shadow: 4px 4px 4px 4px rgb(33, 129, 3);
        font-size: 30px;
    }
}
.decode-textbox{
    height: 200px;
    width: 600px;
    resize: none;
    box-shadow: 4px 4px 4px 4px rgb(134, 25, 9);
}
@media screen and (max-width:980px) {
    .decode-textbox{
        height: 300px;
        width: 800px;
        resize: none;
        box-shadow: 4px 4px 16px 16px rgb(134, 25, 9);
        font-size: 30px;
    }
}
.encode {
    margin-top: 30px;
    background-color: blue;
    color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  cursor: pointer;
  letter-spacing: 2px;
  }
  .decode {
    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;
  }
