@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&display=swap");
body {
  font-family: "Instrument Sans", sans-serif;
  padding: 0;
  margin: 0;
}

#page-content {
  background: linear-gradient(130deg, rgb(2, 0, 36) 0%, rgb(0, 154, 130) 100%);
  justify-content: center;
  box-sizing: border-box;
  flex-direction: column;
  align-items: center;
  position: relative;
  min-height: 100dvh;
  padding: 0 10px;
  display: flex;
  width: 100%;
}

ul {
  padding-left: 1rem;
}
ul li {
  list-style-type: none;
  align-items: center;
  margin: 10px 0;
  display: flex;
}
ul li::before {
  color: #009a82;
  font-size: 0.7rem;
  margin-right: 5px;
  content: "❯";
}

h1 {
  font-size: 1.5rem;
  margin-top: 40px;
}

h2 {
  font-size: 1.2rem;
  margin: 1rem 0;
}

p {
  line-height: 1.5;
}

.theme-link {
  transition: 0.2s background-color;
  background-color: #009a82;
  display: inline-block;
  text-decoration: none;
  border-radius: 100px;
  padding: 11px 18px;
  color: #ffffff;
  margin-top: 15px;
}
.theme-link:hover {
  background-color: #02806d;
}

.link {
  color: #009a82;
}

.content-box {
  box-shadow: 2px 2px 20px 0px rgba(0, 0, 0, 0.3);
  background-color: #ffffff;
  box-sizing: border-box;
  border-radius: 10px;
  margin: 20px 0 40px 0;
  max-width: 100%;
  padding: 40px;
  width: 800px;
}

.logo-box {
  justify-content: center;
  margin-bottom: 50px;
  display: flex;
}
.logo-box img {
  max-width: 100%;
  width: 300px;
}

.row {
  justify-content: space-between;
  align-items: flex-end;
  display: flex;
}
.row .column {
  white-space: nowrap;
}
.row .column img {
  max-width: 100%;
}

.author {
  position: absolute;
  margin-bottom: 0;
  color: #ffffff;
  bottom: 10px;
}

.no-marker {
  list-style-type: none;
  margin-top: 40px;
}
.no-marker li::before {
  display: none;
}

@media screen and (max-width: 600px) {
  .row .hidden {
    display: none;
  }
  .author {
    margin-top: 1rem;
  }
  .content-box {
    padding: 40px 30px;
  }
}
@media screen and (max-width: 450px) {
  .content-box {
    margin-bottom: 40px;
    margin-top: 10px;
  }
}/*# sourceMappingURL=style.css.map */