@import url("https://fonts.googleapis.com/css2?family=Jersey+15&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  width: 100%;
  height: 100%;
  background-color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-direction: column;
}
#logo {
  width: 20vw;
}
h1 {
  color: aliceblue;
  font-family: "Jersey 15", serif;
}
#name {
  color: rgb(212, 43, 122);
  font-size: 45px;
}
#va {
  color: rgb(43, 206, 212);
  font-size: 45px;
}
#voice {
  width: 100px;
  display: none;
}
#btn {
  width: 30%;
  background: linear-gradient(to right, rgb(21, 145, 207), rgb(201, 41, 116));
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 20px;
  border-radius: 20px;
  color: white;
  box-shadow: 2px 2px 10px rgb(21, 145, 207), 2px 2px 10px rgb(201, 41, 116);
  border: none;
  transition: all 0.5s;
  cursor: pointer;
}
#btn:hover {
  box-shadow: 2px 2px 20px rgb(21, 145, 207), 2px 2px 20px rgb(201, 41, 116);
  letter-spacing: 2px;
}
#footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 10px;
  position: fixed;
  bottom: 0;
  width: 100%;
}

#footer a {
  color: #03a9f4;
  text-decoration: none;
}

@media only screen and (max-width: 480px) {
  #logo {
    width: 60%;
  }
  h1 {
    font-size: 18px;
  }
  #btn {
    padding: 6px 12px;
    width: 50%;
  }
  #content {
    font-size: 12px;
  }
  #voice {
    width: 60px;
    height: 60px;
  }
}

@media only screen and (max-width: 768px) {
  #logo {
    width: 50%;
  }
  h1 {
    font-size: 20px;
  }
  #btn {
    padding: 8px 16px;
    width: 60%;
  }
  #content {
    font-size: 14px;
  }
  #voice {
    width: 80px;
    height: 80px;
  }
}
