@import url("https://fonts.googleapis.com/css2?family=Xanh+Mono:ital@0;1&display=swap");
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;
}

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;
}

img, iframe {
  vertical-align: bottom;
  max-width: 100%;
}

input, textarea, select {
  font: inherit;
}

* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: transparent;
  border: 1px solid white;
  border-radius: 5px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: white;
  border-radius: 5px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: white;
  cursor: pointer;
}

html {
  overflow: hidden;
  height: 100vh;
}

body {
  background-color: #fcf9ed;
  font-family: "Xanh Mono", monospace;
  overflow: hidden;
  height: 100%;
  color: white;
}
body .background {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
body .background img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  -o-object-position: center center;
     object-position: center center;
  animation: scaleZoom ease-in-out infinite both 2s;
  animation-direction: alternate;
}
body main {
  overflow: hidden;
  width: 100%;
  height: 100%;
  padding: 2rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media (max-width: 767px) {
  body main {
    padding: 1rem;
  }
}

@keyframes scaleZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.25);
  }
}
.gif {
  position: absolute;
  top: 25%;
  left: 30%;
  width: 300px;
  height: 300px;
  z-index: -1;
}
.gif img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 767px) {
  .gif {
    width: 100px;
    height: 100px;
    top: 5%;
    right: 5%;
    left: unset;
  }
}

.linny {
  position: absolute;
  bottom: -25%;
  left: -5%;
  width: 40%;
  height: auto;
  z-index: -1;
}
.linny img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 767px) {
  .linny {
    bottom: -5%;
  }
}

.comment-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  width: 40%;
  border-radius: 25px;
  height: 100%;
  padding: 1rem;
}
@media (max-width: 767px) {
  .comment-box {
    width: 100%;
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
  }
}
.comment-box .comments__list {
  overflow-y: scroll;
  margin-bottom: 1rem;
  scrollbar-color: red orange;
  scrollbar-width: thin;
}
.comment-box .comment {
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}
.comment-box .comment__content {
  margin-bottom: 1rem;
}
.comment-box .comment__author {
  margin-bottom: 1rem;
}
.comment-box .comment__date {
  font-size: 0.75rem;
}
.comment-box .comment__form .logged-in-as {
  display: none;
}
.comment-box .comment__form .comment-form-url {
  display: none;
}
.comment-box .comment__form .comment-reply-title {
  display: none;
}
.comment-box .comment__form .comment-notes {
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
}
.comment-box .comment__form textarea#comment {
  background: transparent;
  width: 100%;
  height: 100px;
  border: 1px solid white;
  border-radius: 5px;
  color: white;
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
}
.comment-box .comment__form input#author, .comment-box .comment__form input#email {
  background-color: transparent;
  border: 1px solid white;
  border-radius: 5px;
  margin-bottom: 0.5rem;
  color: white;
}
.comment-box .comment__form input.submit {
  background-color: transparent;
  border: 1px solid white;
  border-radius: 5px;
  color: white;
  padding: 0.5rem 0.5rem;
  cursor: pointer;
  transition: background-color 0.35s ease;
}
.comment-box .comment__form input.submit:hover {
  background-color: hotpink;
}

.happy-birthday {
  position: absolute;
  top: 15%;
  left: 5%;
  transform: rotate(-15deg);
  font-size: 4rem;
  color: white;
}
@media (max-width: 767px) {
  .happy-birthday {
    display: none;
  }
}/*# sourceMappingURL=main.css.map */