
*{
  box-sizing: border-box;

}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f2f2f2;
  height: 10vh;
}

header {
  display: flex;
  justify-content: center;
  padding-left: 30px;
  flex-direction: column;
}

.internalLink{
  margin-right: 15px;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  margin: 30px;
}

.buttons{
display: grid;
width: 60%;
gap: 10px;
grid-template-columns: repeat(3, auto);
margin: 20px auto;
}

footer {
  padding-left: 30px;
  display: flex;
  flex-direction: column;
}

span {
  margin-bottom: 15px;
}

