@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: content-box;
}

body {
  background-image: url("../img/Peachy.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;

  color: #d0ffff;
  text-align: center;

  font-family: "Roboto", sans-serif;
  font-size: 11px;
  font-weight: 400;
  font-style: normal;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100vh;
}

main {
  display: flex;
  flex-direction: column;
}

h1 {
  max-width: 100vw;
  font-size: 144px;
}

ul {
  align-items: flex-start !important;
  list-style-type: none;
}

li {
  float: left;
  height: min-content;
}

li a {
  display: block;
  padding: 0 0.5rem 1rem 0.5rem;
  transition: padding 0.2s;
  min-width: 50px;
  background: none;
  color: #d0ffff00;
  line-height: 1.5rem;
  text-align: center;
}

li a:hover {
  padding: 0 1.5rem 1rem 1.5rem;
  transition: padding 0.4s;
  background: radial-gradient(circle at 50%, #ffffffc0, #ffffff80 33%, #ffffff00 67%);
  color: #d0ffffff;
}

footer span {
  height: min-content;
  padding: 2px 3px;
  border: 1px solid white;
  background-color: black;
  color: white;
}

.page-stroke {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;

  min-height: max-content;
  height: 21vh;
}

.prevent-select {
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

@media (pointer: coarse) {
  li a {
    color: #d0ffffff;
  }
}

@media screen and (max-width: 820px) {
  h1 {
    font-size: 126px;
  }
}

@media screen and (max-width: 720px) {
  h1 {
    font-size: 108px;
  }
}

@media screen and (max-width: 620px) {
  h1 {
    font-size: 90px;
  }
}

@media screen and (max-width: 520px) {
  h1 {
    font-size: 72px;
  }
}