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