* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 18px;
}

@font-face {
  font-family: LeagueSpartan;
  src: url(./font/LeagueSpartan-Medium.ttf);
}

@font-face {
  font-family: LeagueSpartan_Bold;
  src: url(./font/LeagueSpartan-Bold.ttf);
}
@font-face {
  font-family: LeagueSpartan_Thin;
  src: url(./font/LeagueSpartan-Thin.ttf);
}

:root {
  --color-green: #535f22;
  --color-grey: #707070;
}

h1 {
  font-size: 1rem;
  font-family: LeagueSpartan_Thin;
  color: var(--color-grey);

  text-align: center;
}
h2 {
  font-size: 1.5rem;
  font-family: LeagueSpartan_Thin;
  color: var(--color-grey);

  text-align: center;
}

p {
  font-size: 1rem;
  font-family: LeagueSpartan;
  color: var(--color-grey);
  line-height: 1.7rem;
  text-align: center;
}

.button-6 {
  align-items: center;
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0.25rem;
  box-shadow: rgba(0, 0, 0, 0.02) 0 1px 3px 0;
  box-sizing: border-box;
  color: rgba(0, 0, 0, 0.85);
  cursor: pointer;
  display: inline-flex;
  font-family: system-ui, -apple-system, system-ui, "Helvetica Neue", Helvetica,
    Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  justify-content: center;
  line-height: 1.25;
  margin: 0 4rem;
  min-height: 3rem;
  padding: calc(0.875rem - 1px) calc(1.5rem - 1px);
  position: relative;
  text-decoration: none;
  transition: all 250ms;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: baseline;
  width: auto;
}

.button-6:hover,
.button-6:focus {
  border-color: rgba(0, 0, 0, 0.15);
  box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
  color: rgba(0, 0, 0, 0.65);
}

.button-6:hover {
  transform: translateY(-1px);
}

.button-6:active {
  background-color: #f0f0f1;
  border-color: rgba(0, 0, 0, 0.15);
  box-shadow: rgba(0, 0, 0, 0.06) 0 2px 4px;
  color: rgba(0, 0, 0, 0.65);
  transform: translateY(0);
}

.logo-container {
  background-image: url(./img/DSC08652.jpg);
  background-position: center;
  background-size: cover;
  height: 100vh;

  display: flex;
  padding-top: 1.5rem;
  align-items: center;
  animation: colorchange 3s ease-in-out;
  flex-direction: column;
}

.logo-container svg {
  width: 20vw;
}
.intro {
  border-radius: 0.3rem;
  width: 80vw;
  display: flex;
  margin: 4rem auto;
  height: 40rem;
  background-color: rgb(241, 241, 241);
  box-shadow: rgba(99, 99, 99, 0.6) 0px 2px 8px 0px;
  overflow: hidden;
}
.backhome-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 5rem;
}
.image-container {
  width: 50%;
  background-image: url(./img/me.jpg);
  background-position: center;
  background-size: cover;
}

.text-container {
  width: 50%;
  padding: 2rem 4rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  justify-content: center;
}
.contact-container {
  background-color: rgba(255, 255, 255, 0.8);
  margin-top: 4rem;
  border-radius: 0.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5rem;
  flex-direction: column;
  gap: 2vh;
}

.contact-container a {
  text-decoration: none;
}

@media screen and (max-width: 1200px) {
  html {
    font-size: 12px;
  }
}

@media screen and (max-width: 900px) {
  .intro {
    flex-direction: column;
    height: 80rem;
  }
  .image-container {
    width: 100%;
    height: 100%;
  }

  .text-container {
    width: 100%;
  }
  .logo-container {
    padding-top: 3rem;
  }
  .logo-container svg {
    width: 70vw;
  }
}
