html {
  background-color: #242424;
}

body {
  color: white;
}

p {
  text-align: center;
  font-size: 40px;
  color: green;
}

img {
  float: left;
  width: 100px ;
  height: 100px;
}


*{
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
}

.container{
  width: 100%;
  height: 100vh;
  background: #242424;
  display: flex;
  align-items: center;

}

.container button {
  margin-top: -840px;
  margin-left: 50px;
  background-color: #628d62;
  color: white;
}

.btn{
  cursor: pointer;
}

.popup{
  width: 400px;
  background: #363430;
  border-radius: 20px;
  border-color: black;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}



