/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

@keyframes header-animation {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100vw);
  }
}
a {
  color: #F000A0;
  text-decoration: none;
}

a:link {
  color: #F000A0;
}

/* visited link */
a:visited {
  color: #F000A0;
}

/* mouse over link */
a:hover {
  color: blue;
}

/* selected link */
a:active {
  color: blue;
}

body {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  font-family: "Inter", sans-serif;
  font-weight: 800;
  color: #F000A0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
body .main-header {
  position: relative;
  background-color: white;
  height: 1.5rem;
  width: clamp(200px, 100vw - 20px, 500px);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
body .main-header span {
  font-weight: 800;
  font-size: 1.25rem;
}
body .main-header .low {
  margin-top: 10px;
}
body main {
  height: 60vh;
  width: 100vw;
  background-image: url("../assets/tile-bg.png");
  background-size: 2.5rem;
  background-repeat: repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}
body main .main-about {
  font-weight: 400;
  position: absolute;
  top: clamp(20px, 5%, 200px);
  left: clamp(20px, 5%, 200px);
  color: #cfcfcf;
  letter-spacing: 0.25rem;
  text-shadow: 5px 10px blue;
}
body main .main-about-2 {
  font-weight: 400;
  position: absolute;
  bottom: clamp(20px, 5%, 200px);
  right: clamp(20px, 5%, 200px);
  color: blue;
  letter-spacing: 0.25rem;
  text-shadow: 5px 10px #cfcfcf;
}
body main .main-image {
  width: clamp(200px, 60%, 350px);
  height: clamp(150px, 65%, 400px);
  background-image: url("../assets/niconiri-invert.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border: solid 4px #F000A0;
  box-sizing: border-box;
  position: relative;
}
body main .main-image .image-boxes {
  position: absolute;
  width: 1rem;
  height: 1rem;
  border: 1px solid #F000A0;
  background-color: white;
}
body main .main-image .b-1 {
  top: -0.625rem;
  left: -0.625rem;
}
body main .main-image .b-2 {
  top: -0.625rem;
  right: -0.625rem;
}
body main .main-image .b-3 {
  bottom: -0.625rem;
  left: -0.625rem;
}
body main .main-image .b-4 {
  bottom: -0.625rem;
  right: -0.625rem;
}
body nav {
  align-self: flex-end;
  height: 40vh;
  display: flex;
  flex-direction: column;
}
body nav ul {
  padding-right: 0.5rem;
  text-align: right;
  font-weight: 500;
  font-size: 3.5rem;
  letter-spacing: 0.25rem;
}
body nav ul li {
  position: relative;
}
body nav ul li h3 {
  position: absolute;
  left: 0;
  bottom: 0;
  font-size: 1rem;
  display: inline;
  text-wrap: wrap;
}
body nav ul .construction {
  color: #EAEAEA;
}/*# sourceMappingURL=style.css.map */