* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@media (max-width: 1080px) {
  html {
    font-size: 93.75%;
  }

  [data-component="experience"],
  [data-component="mountain"] {
    display: none;
  }
}

@media (max-width: 720px) {
  html {
    font-size: 87.5%;
  }
}

body {
  margin: 0;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: greyscale;

  font: 400 1rem "Inter", sans-serif;

  display: flex;
  flex-direction: column;
  height: 100vh;
}

.main {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.main.not-found {
  flex-direction: column;
  height: 100vh;

  color: #262626;
}

[data-component="header"] {
  width: 100%;
  margin: 32px auto 64px;

  text-align: center;
  
  display: flex;
  flex-direction: column;
  align-items: center;
}

[data-component="header"] .logo {
  display: block;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
  
  margin: 0;
  padding: .25rem;
  border-radius: 50%;
  
  background: linear-gradient(to right, #d78f1d, #654511);
}

[data-component="header"] .logo-image {
  width: 8.5rem;
  height: 8.5rem;

  border-radius: 50%;
}

[data-component="header"] .social {
  list-style: none;
  
  margin: 32px 0 0;
  padding: 0;

  display: flex;
  gap: 1.25rem;
}

[data-component="about"] {
  display: flex;
  justify-content: space-evenly;
  flex-direction: column;
  align-items: center;
  
  margin: 0 auto;
  height: 100%;
}

[data-component="about"] .disclaimer {
  text-align: center;
}

[data-component="about"] .disclaimer-description {
  font-size: 1.4rem;
  font-weight: 600;
  color: #262626;
  margin: 0;
  line-height: 35px;
  width: 100%;
  max-width: 650px;
  padding: 0 20px;
}

[data-component="about"] .disclaimer-contact {
  margin: 20px 0 0;
}

[data-component="about"] .disclaimer-contact a {
  font-size: 1rem;
  font-weight: 600;
  color: #262626;
  text-decoration: none;
}

[data-component="experience"]>.content {
  width: 680px;
  min-height: 250px;
  
  margin: 0;
  position: relative;

  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

[data-component="experience"]>.content:before {
  display: block;
  content: "";
  
  width: 99%;
  height: 2px;
  
  background: #b67a18;

  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

[data-component="experience"]>.content .dots {
  display: block;
  width: 15px;
  height: 15px;
  
  border-radius: 50%;
  background: #b67a18;

  position: relative;
}

[data-component="experience"]>.content .dots:nth-child(1) .description {
  top: calc(100% + 30px);
}

[data-component="experience"]>.content .dots:nth-child(2) .description {
  bottom: calc(100% + 30px);
}

[data-component="experience"]>.content .dots:nth-child(3) .description {
  top: calc(100% + 30px);
}

[data-component="experience"]>.content .dots:nth-child(4) .description {
  bottom: calc(100% + 30px);
}

[data-component="experience"]>.content .dots:nth-child(5) .description {
  top: calc(100% + 30px);
}

[data-component="experience"]>.content .dots:nth-child(6) .description {
  bottom: calc(100% + 30px);
}

[data-component="experience"]>.content .dots .description {
  width: 200px;
  text-align: center;
  position: absolute;
  left: 0;
  transform: translateX(-50%);
}

[data-component="experience"]>.content .dots .description-date {
  display: block;
  color: #b67a18;
  line-height: 20px;
  font-size: 0.8rem;
  font-weight: 700;
}

[data-component="experience"]>.content .dots .description-title {
  color: #262626;
  margin: 0;
  font-size: 1.2rem;
  line-height: 20px;
}

[data-component="experience"]>.content .dots .description-text {
  color: #262626;
  margin: 0;
  line-height: 20px;
  font-size: 1rem;
  font-weight: 600;
}

[data-component="wave"] > img, 
[data-component="mountain"] > img  {
  filter: blur(0.5px) opacity(0.1);
  opacity: 0.5;
  pointer-events: none;

  max-width: 500px;
  margin: 64px 0;
}

[data-component="footer"] {
  width: 100%;
  padding: 20px 0;
  text-align: center;
}

[data-component="footer"] .copyright {
  font-size: 0.8rem;
  font-weight: 600;
}

[data-component="footer"] .copyright>a {
  color: #000000;
  text-decoration: none;
}
