body{
  width:100%;
  height:100%;
  background-color: #2b2b2b;
  color:white;
  margin:0;
}

.container{
  width:100%;
  height:70vh;
  display:flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap:15px;
  
}
h1{
  margin:0;
}
p{
  font-size:18px;
}

#converter{
  width: 250px;
  height: 30px;
  font-size: 25px;
}
#button{
  width: 120px;
  height: 35px;
  font-size: 25px;
}

#result{
  font-size: 25px;
}
.footer{
  position:fixed;
  bottom:10px;
}


@media only screen and (max-width: 600px) {
  h1{
    font-size:25px;
    margin-top:25px;
  }
  form{
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap:10px;
  }
  .footer{
    font-size:16px;
  }
  .container{
    width:100%;
    height:70vh;
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap:15px;
  }
}

@media only screen and (max-width: 368px) {
  h1{
    font-size:20px;
    margin-top:20px;
  }
  
  form{
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap:10px;
  }

  .container{
    width:100%;
    height:70vh;
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap:5px;
  }
  #converter{
    width: 200px;
    height: 25px;
    font-size: 20px;
  }
  #button{
    width: 100px;
    height: 30px;
    font-size: 20px;
  }
  
  #result{
    font-size: 20px;
    margin:10px 0;
  }
  .footer{
    font-size:14px;
  }
}
@media only screen and (max-height: 280px){
  .footer{
    display:none;
  }
}