@import url("https://fonts.googleapis.com/css2?family=Ubuntu&display=swap");

* {
  font-family: "ubuntu", sans-serif;
}
#home{
  position: absolute;
  top: 0;
  left: 0;
  padding: 50px;
}
body {
  width: 100vw;
  height: 100vh;
  background-color: #121330;
  display: grid;
  place-items: center;
  overflow-x: hidden;
}

form{
    background: linear-gradient(279deg, rgba(0, 212, 255, 1) 0%, rgba(5, 5, 100, 1) 152%, rgba(0, 212, 255, 1) 100%);
    box-shadow: 0px 0px 13px 4px rgb(21 76 237);
    padding: 25px;
    font-size: 25px;
    color: white;
    width: 30%;
    margin-top: 20px;
}
.amount{
  text-align: left;
}
.amount input{
  height: 30px;
  width: 275px;
}
.drop-list{
  display: flex;
  align-items: center;
  justify-content: center;
}
.from{
  margin-right: 90px;
}
.to{
  margin-left: 40px;
}
.icon{
  margin-left: -45px;
  margin-top: 70px;
}
.select-box{
  display: grid;
}
.select-box select{
  margin-top: 20px;
}

button{
  height: 35px;
  margin: 20px;
  width: 100px;
  font-size: 15px;
  border: none;
  border-radius: 3px;
  background-color: black;
  color: white;
  cursor: pointer;
  margin: 30px 0px 0px 35%;

}
button:hover{
  color: #e57a15;
}

#resultContainer {
  font-size: 30px;
}

.calculator-name-header {
  margin-top: 50px;
  padding: 10px;
  border-radius: 0px 15px 0px 15px;
  font-size: 25px;
  box-shadow: 0px 0px 13px 4px rgb(21 76 237);
  background: linear-gradient(279deg, rgba(0, 212, 255, 1) 0%, rgba(5, 5, 100, 1) 152%, rgba(0, 212, 255, 1) 100%);
  color:#fff;
  margin: 1px 0px 15px 0px;
}
#resultPower{
    font-size: 25px;
}
#calc1{
    margin-left: 20px;
}

.box{
    display:grid;
    font-size: 20px;
    margin-bottom: 20px;
}
