html {
  background: url("resources/background.png") no-repeat center center fixed; 
  background-size: cover;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Roboto', sans-serif;
}

.container {
  text-align: center;
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.button-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 10px;
}

.button {
  display: inline-block;
  margin: 5px;
}


.icon {
  height: 200px;
  width: 200px;
  transition: all 0.5s ease-in-out;
}

.icon:hover {
  transform: scale(1.05);
}


h1 {
  font-size: 3em;
  margin-bottom: 20px;
  color: white;
  text-transform: uppercase;
}

h2 {
  font-size: 2em;
  margin-bottom: 30px;
  color: white;
}

h3 {
  font-size: 1.2em;
  margin: 10px;
  color: white;
}


p {
  font-size: 1.2em;
  line-height: 1.5;
  margin-bottom: 30px;
}

.button img {
  height: 80px;
  width: 80px;
  transition: all 0.2s ease-in-out;
}

.button:hover img {
  transform: scale(1.1);
}

