@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300&family=Roboto&family=Ubuntu&display=swap");
* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Ubuntu", sans-serif;
  background-color: #3b3838;
  color: rgb(255, 255, 255);
  display: flex;
  flex-direction: column;
  height: 100vh;
  justify-content: center;
  align-items: center;
  text-align: center;
}

h1 {
  font-size: 40px;
  margin: 50px;
}

.image {
  margin: 10px;
}

img {
  width: 12rem;
}

#text {
  margin-top: 25px;
  font-size: 25px;
  border-radius: 5px;
  padding: 15px;
  border: none;
}

button {
  font-family: "Ubuntu", sans-serif;
  margin: 30px;
  border: none;
  border-radius: 10px;
  color: white;
  padding: 15px;
  font-size: 20px;
  background-color: rgb(0, 0, 0);
  cursor: pointer;
}

button:active {
  background-color: green;
}
