@font-face {
  font-family: 'PT Sans Bold';
  src: url('./assets/fonts/PTSans-Bold.ttf') format('truetype');
}

:root {
  --main-font-color: #E3E3E3;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  min-height: 100lvh;
  width: 100lvw;

  margin: 0;

  background: linear-gradient(#343B4D, #48344D);
  background-repeat: no-repeat;

  font-family: 'PT Sans Bold', sans-serif;
}

body:has(div.about), body:has(div.intro)  {
  height: 100lvh
}

h1 {
  font-size: 4rem;
  color: var(--main-font-color);
  margin: 0;
}

p {
  font-size: 1.5rem;
  color: var(--main-font-color);
  margin: 0;
}

div {
  position: relative;
  z-index: 1;
}

div.background {
  position: absolute;
  z-index: 0;
  top: 0;
  height: 100lvh;
  width: 100lvw;
  background-image: url("./assets/bg.png");
  background-repeat: no-repeat;
  background-position: center right 15%;
}

div.intro {
  display: flex;
  flex-direction: column;
  width: 30%;
  height: 100%;
  justify-content: center;

  margin-left: 10lvw;
}

div.intro p {
  margin-top: 2rem;
  margin-bottom: 4rem;
}

div.intro img {
  width: 40%;
  cursor: pointer;
}

div.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 4lvh;
}

div.footer a {
  font-size: 1.5rem;
  color: var(--main-font-color);
}

div.footer span {
  font-size: 1rem;
  color: var(--main-font-color);
}

/* ABOUT PAGE */
div.about {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;

  height: 100%;
  margin-left: 10lvw;
}

div.about div {
  display: flex;
  flex-direction: column;
}

div.about div span {
  font-size: 1.5rem;
  color: var(--main-font-color);
}

div.about a {
  color: var(--main-font-color);
  font-size: 1.5rem;
  margin-top: 2rem;
}

/* PRIVACY PAGE */
div.privacy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 10lvw;
}

div.privacy h1, div.privacy h2, div.privacy h3, div.privacy h4, div.privacy p {
  color: var(--main-font-color);
}

div.privacy h2 {
  font-size: 2.5rem;
}

div.privacy h3 {
  font-size: 2rem;
}

div.privacy h4 {
  font-size: 1.5rem;
}

/* ACCOUNT DELETION PAGE */
div.content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2.5rem;

  height: 100lvh;
  width: 50lvw;

  margin-left: 10lvw;
}

@media screen and (max-width: 768px) {  
  div.background {
    background-size: contain;
    background-position: top 30% center;
  }
  
  div.intro {
    width: 100%;
    align-items: center;
    justify-content: flex-end;
    margin: 0;
  }

  div.intro img {
    width: 60%;
    margin-bottom: 40%;
  }

  div.intro h1, div.intro p {
    display: none;
  }

  div.content {
    margin: 0;
    width: 100lvw;
  }
}