* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
p,
a,
span {
  font-size: 1em;
  line-height: 1em;
  font-weight: normal;
  margin: 0;
  color: black;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

@font-face {
  font-family: Rungli;
  src: url(../assets/fonts/Rungli-Regular.woff2);
}

html,
body {
  font-size: 9px;
  font-family: Rungli;
  background-color: #64c864;
}

@media screen and (min-width: 800px) {
  html,
body {
    font-size: 18px;
  }
}

.list {
  padding: 0 0.5em 0.5em 0.5em;
}

.list__item {
  border-top: solid 0.5em #64c864;
  background-color: white;
  text-align: center;
  transition: background-color 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.list__item a,
.list__item span {
  display: block;
  padding: 0.5rem;
  font-size: 5rem;
  color: #64c864;
  transition: color 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.list__item--small a,
.list__item--small span {
  font-size: 2.5rem;
}

.list__item--sticky {
  position: sticky;
  top: 0;
  border-bottom: solid 0.5em #64c864;
  margin-bottom: -0.5em;
}

.list__item + .list__item {
  border-top: solid 0.5em #64c864;
}

.list__item:hover {
  background-color: #64c864;
}

.list__item:hover a,
.list__item:hover span {
  color: white;
}

.list__item--no-hover:hover {
  background-color: white;
}

.list__item--no-hover:hover a,
.list__item--no-hover:hover span {
  color: #64c864;
}

.website {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-color: white;
}

.website__options {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  background-color: transparent;
  width: 70px;
  height: 70px;
  transform: translate(-50%, -50%) rotate(45deg);
}

.website__options:hover {
  background-color: #64c864;
}

.website__inner {
  width: 100%;
  height: 100%;
}
