* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  line-height: 1.5;
}

@font-face {
  font-family: Blakely;
  src: url("./Assets/Fonts/Blakely Light.woff2");
}

@font-face {
  font-family: Flegrei;
  src: url("./Assets/Fonts/Flegrei.otf");
}

.bold {
  font-weight: 700;
}

#flegrei {
  font-family: Flegrei;
}

header {
  height: 300px;
  display: flex;
  align-items: center;
  border-bottom: 0.5px solid #7d7d7d;
}

.header-logo {
  height: 150px;
  margin-left: 20px;
}
.hero {
  display: grid;
  grid-template-columns: 10% 80% 10%;
  align-items: center;
}

nav {
  display: flex;
  flex-direction: column;
  margin-left: 20px;
}

nav a {
  font-family: Blakely;
  font-size: 32px;
  color: black;
  text-decoration: none;
}

a {
  color: inherit;
  text-decoration: none;
}

.hero-image {
  grid-column: 2;
}

.hero-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.text {
  width: min(80%, 1100px);
  margin: 0 auto;
  padding: 4rem 0;

  font-family: "Rockwell", serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.5;
  text-align: justify;
}

.image {
  margin: 0;
  width: 100%;
}

.image img {
  width: 100%;
  aspect-ratio: 1600 / 900;
  height: auto;
  object-fit: cover;
  display: block;
}

footer {
  height: 300px;
  display: flex;
  align-items: center;
  border-top: 0.5px solid #7d7d7d;
}

footer nav {
  margin-right: auto;
}

.footer-social {
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-social img {
  width: 70px;
  height: 70px;
  transition: transform 0.5s ease;
}

.footer-social img:hover {
  transform: scale(1.2);
}
