body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #D8E4EB;
  color: #2A4D5C;
}

header {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  margin:25px 10px 0px 10px;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin:0px 10px 10px 10px;
}

#profile {
  max-width: 110px;
  margin-bottom: 20px;
}

#logo {
  max-width: 300px;
  margin-bottom: 20px;
}

h1 {
  text-align: center;
}

h2 {
  margin-bottom: 20px;
  margin-top: 0px;
}

h3 {
  margin-bottom: 5px;
  margin-top: 20px;
}

p {
  font-size: 18px;
  text-align: center;
  margin-bottom: 10px;
  margin-top: 0px;
  }

.button-list {
  list-style-type: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
  margin-top: 0px;
}

.buttonmenu {
  display: inline-block;
  background-color: #2A4D5C;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  padding: 10px 20px;
  min-width:60px;
  border-radius: 25px;
  transition: background-color 0.2s, color 0.2s;
}

.buttonmenu:hover {
  background-color: #FF5770;
  color: #ffffff;
}

.buttonmenuactive {
  display: inline-block;
  background-color: #FF5770;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  padding: 10px 20px;
  min-width:60px;
  border-radius: 25px;
  transition: background-color 0.2s, color 0.2s;
}

.buttonmenuactive:hover {
  background-color: #FF5770;
  color: #ffffff;
}

.button {
  display: inline-block;
  background-color: #2A4D5C;
  color: #ffffff;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 5px;
  transition: background-color 0.2s, color 0.2s;
  margin-bottom: 5px;
  margin-top: 5px;

}

.button:hover {
  background-color: #0097B2;
  color: #ffffff;
}

.buttonlink {
  display: inline-block;
  background-color: #FF5770;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  font-weight:bold;
  padding: 10px 20px;
  min-width:150px;
  border-radius: 25px;
  border: 2px solid black;
  border-color: #FF5770;
  transition: background-color 0.2s, color 0.2s;
}

.buttonlink:hover {
  background-color: #ffffff;
  color: #304040;
}

.buttonshop {
  display: inline-block;
  background-color: #FFDE59;
  color: #000000;
  text-align: center;
  text-decoration: none;
  font-weight:bold;
  padding: 10px 20px;
  min-width:80px;
  border-radius: 25px;
  border: 2px solid black;
  border-color: #FF5770;
  transition: background-color 0.2s, color 0.2s;
}

.buttonshop:hover {
  background-color: #ffffff;
  color: #304040;
}

footer {
  background-color: #2A4D5C;
  padding: 10px;
  text-align: center;
}

a {
  color: #D8E4EB;
  text-decoration: none;
}

a:hover {
  color:#0097B2;
}

span {
  padding: 0 5px;
}
