.center {
  background-image: url('source/electro.png');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 150px 20px;
}

.center h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.center p {
  font-size: 18px;
  margin-bottom: 40px;
}

.center .buttons a {
  padding: 15px 30px;
  border: 2px solid rgb(90, 10, 170);
  border-radius: 25px;
  margin: 0 10px;
  transition: background-color 0.3s, color 0.3s;
}

.center .buttons a:hover {
  background-color: rgb(100, 100, 100);
  color: rgb(206, 16, 16);
}


