@font-face {
  font-family: 'Montserrat';
  src: url('./assets/fonts/MontserratRegular.otf');
}

body {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  display: flex;
  justify-content: center;
}

.header {
  text-align: center;
  margin-bottom: 20px;
}

.picture {
  display: block;
  margin: 5% auto;
  max-width: 100%;
  height: auto;
}

.main {
  text-align: center;
}

.link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 280px;
}

.icon {
  font-size: 24px;
  margin-right: 10px;
  color: #fff;
}

li {
  list-style: none;
  margin: 10px 0;
}

ul {
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

a {
  background-color: rgb(54, 119, 76);
  padding: 25px;
  color: #fff;
  text-decoration: none;
  flex-basis: 100%; /* Set equal length for link boxes */
  border-radius: 6px;
  font-weight: bold;
}

a:hover,
a:focus {
  background-color: rgb(39, 73, 51);
}

/* Media Query for Mobile Devices */
@media only screen and (max-width: 600px) {
  .header {
    font-size: 24px;
  }

  .picture {
    margin: 2% auto;
  }

  .main h3 {
    font-size: 22px;
  }

  .main ul {
    font-size: 18px;
  }
}