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;
  text-size-adjust: none;
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: none;
  box-sizing: border-box;
  line-height: 1.0;
  min-height: -webkit-fill-available;
  min-height: 100vh;
  overflow-x: hidden;
  word-wrap: break-word;
  background-color: #FFFFFF;
}

body:before {
  content: '';
  display: block;
  background-attachment: fixed;
  height: 100vh;
  left: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  transform: scale(1);
  width: 100vw;
  z-index: 0;
  background-image: url('../img/bg.gif');
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  min-height: 100vh;
  min-height: -webkit-fill-available;
}

:root {
  --background-height: 100vh;
  --site-language-alignment: left;
  --site-language-direction: ltr;
  --site-language-flex-alignment: flex-start;
  --site-language-indent-left: 1;
  --site-language-indent-right: 0;
  --site-language-margin-left: 0;
  --site-language-margin-right: auto;
  --viewport-height: 100vh;
}

html {
  font-size: 18pt;
}

u {
  text-decoration: underline;
}

strong {
  color: inherit;
  font-weight: bolder;
}

em {
  font-style: italic;
}

code {
  background-color: rgba(144, 144, 144, 0.25);
  border-radius: 0.25em;
  font-family: 'Lucida Console', 'Courier New', monospace;
  font-size: 0.9em;
  font-weight: normal;
  letter-spacing: 0;
  margin: 0 0.25em;
  padding: 0.25em 0.5em;
  text-indent: 0;
}

mark {
  background-color: rgba(144, 144, 144, 0.25);
  color: inherit;
}

s {
  text-decoration: line-through;
}

sub {
  font-size: smaller;
  vertical-align: sub;
}

sup {
  font-size: smaller;
  vertical-align: super;
}

a {
  color: inherit;
  text-decoration: underline;
  transition: color 0.25s ease;
}

a[onclick]:not([href]) {
  cursor: pointer;
}

unloaded-script {
  display: none;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

#wrapper {
  -webkit-overflow-scrolling: touch;
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  height: 100vh;
  overflow: hidden;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
}

body.is-ready #wrapper {
  opacity: 1;
}

#main {
  --alignment: center;
  --flex-alignment: center;
  --indent-left: 1;
  --indent-right: 1;
  --margin-left: auto;
  --margin-right: auto;
  --border-radius-tl: 0;
  --border-radius-tr: 0;
  --border-radius-br: 0;
  --border-radius-bl: 0;
  align-items: center;
  display: flex;
  flex-grow: 0;
  flex-shrink: 0;
  justify-content: center;
  max-width: 100%;
  position: relative;
  text-align: var(--alignment);
  z-index: 1;
  transition: opacity 1s ease-in-out 0s;
  margin: auto;
}

#main > .inner {
  --padding-horizontal: 3rem;
  --padding-vertical: 3rem;
  --spacing: 0rem;
  --width: 40rem;
  border-radius: var(--border-radius-tl) var(--border-radius-tr) var(--border-radius-br) var(--border-radius-bl);
  max-width: 100%;
  position: fixed;
  width: var(--width);
  z-index: 1;
  padding: var(--padding-vertical) var(--padding-horizontal);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#main > .inner > * {
  margin-top: var(--spacing);
  margin-bottom: var(--spacing);
}

#main > .inner > :first-child {
  margin-top: 0 !important;
}

#main > .inner > :last-child {
  margin-bottom: 0 !important;
}

#main > .inner > .full {
  margin-left: calc(var(--padding-horizontal) * -1);
  max-width: calc(100% + calc(var(--padding-horizontal) * 2) + 0.4725px);
  width: calc(100% + calc(var(--padding-horizontal) * 2) + 0.4725px);
}

#main > .inner > .full:first-child {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
  margin-top: calc(var(--padding-vertical) * -1) !important;
}

#main > .inner > .full:last-child {
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: inherit;
  margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

#main > .inner > .full.screen {
  border-radius: 0 !important;
  max-width: 100vw;
  position: relative;
  width: 100vw;
  left: 50%;
  margin-left: -50vw;
  right: auto;
}

body.is-loading #main {
  opacity: 0;
}

body.is-instant #main,
body.is-instant #main > .inner > *,
body.is-instant #main > .inner > section > * {
  transition: none !important;
}

body.is-instant:after {
  display: none !important;
  transition: none !important;
}

@keyframes loading-spinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.deferred:before {
  content: '';
  display: block;
  width: 4rem;
  height: 4rem;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -2rem 0 0 -2rem;
  animation: loading-spinner 1s infinite linear;
  transition: opacity 0.25s ease;
  transition-delay: 0.5s;
  opacity: 0;
  z-index: -1;
  background-image: url('data:image/svg+xml;base64,PHN2Zy...');
  background-position: center;
  background-repeat: no-repeat;
  background-size: 3rem;
}

.deferred.loading:before {
  opacity: 0.35;
  z-index: 0;
}

h1,
h2,
h3,
p {
  direction: var(--site-language-direction);
  position: relative;
}

h1 span.p,
h2 span.p,
h3 span.p,
p span.p {
  display: block;
  position: relative;
}

h1 span[style],
h2 span[style],
h3 span[style],
p span[style],
h1 strong,
h2 strong,
h3 strong,
p strong,
h1 a,
h2 a,
h3 a,
p a,
h1 code,
h2 code,
h3 code,
p code,
h1 mark,
h2 mark,
h3 mark,
p mark,
h1 spoiler-text,
h2 spoiler-text,
h3 spoiler-text,
p spoiler-text {
  -webkit-text-fill-color: currentcolor;
}

#text01 {
  text-align: center;
  color: #FF6FAB;
  font-family: '-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
  font-size: 1.75em;
  line-height: 0.75;
  font-weight: 400;
  font-family: 'winterminie';
  z-index: 99;
}

#text01 a {
  text-decoration: underline;
}

#text01 a:hover {
  text-decoration: none;
}

#text01 span.p:nth-child(n + 2) {
  margin-top: 1rem;
}

#text02 {
  text-align: center;
  color: #FFA8C6;
  font-family: '-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
  font-size: 1.25em;
  line-height: 1;
  font-weight: 400;
  font-family: 'winterminie';
  z-index: 99;
  top: 0.25em;
}

#text02 a {
  text-decoration: underline;
}

#text02 a:hover {
  text-decoration: none;
}

#text02 span.p:nth-child(n + 2) {
  margin-top: 1rem;
}

#text03:not(:first-child) {
  margin-top: 0.5rem !important;
}

#text03:not(:last-child) {
  margin-bottom: 0.5rem !important;
}

#text03 {
  text-align: center;
  color: #FFFFFF;
  font-family: hearts;
  font-size: 1em;
  line-height: 1.25;
  font-weight: 400;
  text-shadow: -1px 0 #ababab, 0 1px #ababab, 1px 0 #ababab, 0 -1px #ababab, 0 0;
  background: #FF6FAB;
  display: block;
  cursor: pointer;
}

#text03 a {
  text-decoration: none;
  display: block;
  width: 100%;
  height: 100%;
}

#text03 a:hover {
  color: #FEC5E5;
}

#text03 span.p:nth-child(n + 2) {
  margin-top: 1rem;
}

#text04:not(:first-child) {
  margin-top: 0.5rem !important;
}

#text04:not(:last-child) {
  margin-bottom: 0.5rem !important;
}

#text04 {
  text-align: center;
  color: #FFFFFF;
  font-family: hearts;
  font-size: 1em;
  line-height: 1.25;
  font-weight: 400;
  text-shadow: -1px 0 #ababab, 0 1px #ababab, 1px 0 #ababab, 0 -1px #ababab, 0 0;
  background: #FF6FAB;
  display: block;
  cursor: pointer;
}

#text04 a {
  text-decoration: none;
  display: block;
  width: 100%;
  height: 100%;
}

#text04 a:hover {
  color: #FEC5E5;
}

#text04 span.p:nth-child(n + 2) {
  margin-top: 1rem;
}

#text05:not(:first-child) {
  margin-top: 0.5rem !important;
}

#text05:not(:last-child) {
  margin-bottom: 0.5rem !important;
}

#text05 {
  text-align: center;
  color: #FFFFFF;
  font-family: hearts;
  font-size: 1em;
  line-height: 1.25;
  font-weight: 400;
  text-shadow: -1px 0 #ababab, 0 1px #ababab, 1px 0 #ababab, 0 -1px #ababab, 0 0;
  background: #FF6FAB;
  display: block;
  cursor: pointer;
}

#text05 a {
  text-decoration: none;
  display: block;
  width: 100%;
  height: 100%;
}

#text05 a:hover {
  color: #FEC5E5;
}

#text05 span.p:nth-child(n + 2) {
  margin-top: 1rem;
}

#text06:not(:first-child) {
  margin-top: 0.5rem !important;
}

#text06:not(:last-child) {
  margin-bottom: 0.5rem !important;
}

#text06 {
  font-family: hearts;
  border: 2px solid #FFA8C6;
  border-radius: 10px;
  padding: 5px;
  background: white;
  position: relative;
  letter-spacing: 0rem;
  width: 100%;
  font-size: 1em;
  line-height: 1.25;
}

#text06 a:hover {
  color: #FEC5E5;
}

#text06 span.p:nth-child(n + 2) {
  margin-top: 1rem;
}

#text06,
#text07,
#text08 {
  font-family: hearts;
  padding: 1.5em;
  position: absolute;
  z-index: 999;
  width: 10.75em;
}

.container {
  position: relative;
}

.container > .wrapper {
  vertical-align: top;
  position: relative;
  max-width: 100%;
  border-radius: inherit;
}

.container > .wrapper > .inner {
  vertical-align: top;
  position: relative;
  max-width: 100%;
  border-radius: inherit;
  text-align: var(--alignment);
}

#main .container.full:first-child > .wrapper {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}

#main .container.full:last-child > .wrapper {
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: inherit;
}

#main .container.full:first-child > .wrapper > .inner {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}

#main .container.full:last-child > .wrapper > .inner {
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: inherit;
}

#container01 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#container01 > .wrapper {
  display: inline-block;
  width: 13em;
  background-attachment: scroll;
  border: 2px solid #FFA8C6;
  background-color: #ffe3f1;
}

#container01 > .wrapper > .inner {
  --gutters: 2rem;
  --padding-horizontal: 1rem;
  --padding-vertical: 1rem;
  --spacing: 0.25rem;
  padding: var(--padding-vertical) var(--padding-horizontal);
  border-radius: calc(1rem - 2px);
}

#container01.default > .wrapper > .inner > * {
  margin-bottom: var(--spacing);
  margin-top: var(--spacing);
}

#container01.default > .wrapper > .inner > *:first-child {
  margin-top: 0 !important;
}

#container01.default > .wrapper > .inner > *:last-child {
  margin-bottom: 0 !important;
}

#container01.columns > .wrapper > .inner > * {
  flex-grow: 0;
  flex-shrink: 0;
  max-width: 100%;
  text-align: var(--alignment);
  padding: 0 0 0 var(--gutters);
}

#container01.columns > .wrapper > .inner > * > * {
  margin-bottom: var(--spacing);
  margin-top: var(--spacing);
}

#container01.columns > .wrapper > .inner > * > *:first-child {
  margin-top: 0 !important;
}

#container01.columns > .wrapper > .inner > * > *:last-child {
  margin-bottom: 0 !important;
}

#container01.columns > .wrapper > .inner > *:first-child {
  margin-left: calc(var(--gutters) * -1);
}

#container01.default > .wrapper > .inner > .full {
  margin-left: calc(var(--padding-horizontal) * -1);
  max-width: none !important;
  width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

#container01.default > .wrapper > .inner > .full:first-child {
  margin-top: calc(var(--padding-vertical) * -1) !important;
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}

#container01.default > .wrapper > .inner > .full:last-child {
  margin-bottom: calc(var(--padding-vertical) * -1) !important;
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: inherit;
}

#container01.columns > .wrapper > .inner > div > .full {
  margin-left: calc(var(--gutters) * -0.5);
  max-width: none !important;
  width: calc(100% + var(--gutters) + 0.4725px);
}

#container01.columns > .wrapper > .inner > div:first-child > .full {
  margin-left: calc(var(--padding-horizontal) * -1);
  width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container01.columns > .wrapper > .inner > div:last-child > .full {
  width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container01.columns > .wrapper > .inner > div > .full:first-child {
  margin-top: calc(var(--gutters) * -0.5) !important;
}

#container01.columns > .wrapper > .inner > div > .full:last-child {
  margin-bottom: calc(var(--gutters) * -0.5) !important;
}

#container01.columns > .wrapper > .inner > div:first-child,
#container01.columns > .wrapper > .inner > div:first-child > .full:first-child {
  border-top-left-radius: inherit;
}

#container01.columns > .wrapper > .inner > div:last-child,
#container01.columns > .wrapper > .inner > div:last-child > .full:first-child {
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: inherit;
}

#container01.columns > .wrapper > .inner > .full {
  align-self: stretch;
}

#container01.columns > .wrapper > .inner > .full:first-child {
  border-bottom-left-radius: inherit;
  border-top-left-radius: inherit;
}

#container01.columns > .wrapper > .inner > .full:last-child {
  border-bottom-right-radius: inherit;
  border-top-right-radius: inherit;
}

#container01.columns > .wrapper > .inner > .full > .full:first-child:last-child {
  border-radius: inherit;
  height: calc(100% + (var(--padding-vertical) * 2));
}

#container01.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
  border-radius: inherit;
  height: 100%;
  position: absolute;
  width: 100%;
}

#container02 > .wrapper {
  display: inline-block;
  width: 6em;
  height: 8em;
  position: absolute;
  z-index: 999;
  top: -11em;
  left: 24em;
  border-radius: 1rem;
}

#container02 > .wrapper > .inner {
  --gutters: 1.5rem;
  --padding-horizontal: 0.375rem;
  --padding-vertical: 0.375rem;
  --spacing: 0.1875rem;
  padding: var(--padding-vertical) var(--padding-horizontal);
  background-color: #FFFFFF;
  border-radius: calc(1rem - 1px);
}

#container02.default > .wrapper > .inner > * {
  margin-bottom: var(--spacing);
  margin-top: var(--spacing);
}

#container02.default > .wrapper > .inner > *:first-child {
  margin-top: 0 !important;
}

#container02.default > .wrapper > .inner > *:last-child {
  margin-bottom: 0 !important;
}

#container02.columns > .wrapper > .inner > * {
  flex-grow: 0;
  flex-shrink: 0;
  max-width: 100%;
  text-align: var(--alignment);
  padding: 0 0 0 var(--gutters);
}

#container02.columns > .wrapper > .inner > * > * {
  margin-bottom: var(--spacing);
  margin-top: var(--spacing);
}

#container02.columns > .wrapper > .inner > * > *:first-child {
  margin-top: 0 !important;
}

#container02.columns > .wrapper > .inner > * > *:last-child {
  margin-bottom: 0 !important;
}

#container02.columns > .wrapper > .inner > *:first-child {
  margin-left: calc(var(--gutters) * -1);
}

#container02.default > .wrapper > .inner > .full {
  margin-left: calc(var(--padding-horizontal) * -1);
  max-width: none !important;
  width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

#container02.default > .wrapper > .inner > .full:first-child {
  margin-top: calc(var(--padding-vertical) * -1) !important;
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}

#container02.default > .wrapper > .inner > .full:last-child {
  margin-bottom: calc(var(--padding-vertical) * -1) !important;
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: inherit;
}

#container02.columns > .wrapper > .inner > div > .full {
  margin-left: calc(var(--gutters) * -0.5);
  max-width: none !important;
  width: calc(100% + var(--gutters) + 0.4725px);
}

#container02.columns > .wrapper > .inner > div:first-child > .full {
  margin-left: calc(var(--padding-horizontal) * -1);
  width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container02.columns > .wrapper > .inner > div:last-child > .full {
  width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container02.columns > .wrapper > .inner > div > .full:first-child {
  margin-top: calc(var(--gutters) * -0.5) !important;
}

#container02.columns > .wrapper > .inner > div > .full:last-child {
  margin-bottom: calc(var(--gutters) * -0.5) !important;
}

#container02.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
  margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container02.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
  margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

#container02.columns > .wrapper > .inner > div:first-of-type,
#container02.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}

#container02.columns > .wrapper > .inner > div:last-of-type,
#container02.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: inherit;
}

#container02.columns > .wrapper > .inner > .full {
  align-self: stretch;
}

#container02.columns > .wrapper > .inner > .full:first-child {
  border-bottom-left-radius: inherit;
  border-top-left-radius: inherit;
}

#container02.columns > .wrapper > .inner > .full:last-child {
  border-bottom-right-radius: inherit;
  border-top-right-radius: inherit;
}

#container02.columns > .wrapper > .inner > .full > .full:first-child:last-child {
  border-radius: inherit;
  height: calc(100% + (var(--padding-vertical) * 2));
}

#container02.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
  border-radius: inherit;
  height: 100%;
  position: absolute;
  width: 100%;
}

.image {
  display: block;
  line-height: 0;
  max-width: 100%;
/*  position: relative;*/
}

.image .frame {
  -webkit-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  vertical-align: top;
  width: 100%;
}

.image .frame img {
  border-radius: 0 !important;
  max-width: 100%;
  vertical-align: top;
  width: inherit;
}

.image.full .frame {
  display: block;
}

.image.full:first-child .frame {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}

.image.full:last-child .frame {
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: inherit;
}

#image01 .frame {
  width: 10rem;
  position: absolute;
  z-index: 99999;
  right: calc(50% + 1.5em);
  top: 7em;
  animation-name: floating;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

#image01 img {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

#image02 .frame {
  width: 8rem;
  position: absolute;
  z-index: 99999;
  left: calc(50% - -3em);
  top: -1.5em;
}

#image02 img {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

#image02 .frame img {
  transition: none;
}

#image03 .frame {
  width: 10rem;
  transition: none;
  position: absolute;
  z-index: 9999;
  top: -15em;
  left: calc(50% - 5.5em);
}

#image03 img {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

#image03 .frame img {
  transition: none;
}

#image04 .frame {
  width: 1.5rem;
  position: absolute;
  z-index: 99999;
  left: calc(50% + 6em);
  top: 3em;
  animation-name: floating;
  animation-duration: 13s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

#image04 img {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

#image04 .frame img {
  transition: none;
}

hr {
  align-items: center;
  border: 0;
  display: flex;
  justify-content: var(--flex-alignment);
  min-height: 1rem;
  padding: 0;
  position: relative;
  width: 100%;
}

hr:before {
  content: '';
}

#divider01:before {
  height: 6.5rem;
  background-color: transparent;
  width: 1px;
  border-radius: 0px;
}

#divider02:before {
  height: 5rem;
  background-color: transparent;
  width: 1px;
  border-radius: 0px;
}

#footer {
  margin-top: 0rem !important;
}

@media (max-width: 1680px) {
  html {
    font-size: 13pt;
  }
}

@media (max-width: 1280px) {
  html {
    font-size: 13pt;
  }
}

@media (max-width: 980px) {
  html {
    font-size: 15pt;
  }
}

@media (max-width: 736px) {
  html {
    font-size: 15pt;
  }
  #main > .inner {
    --padding-horizontal: 2rem;
    --padding-vertical: 2rem;
    --spacing: 0rem;
  }
  #text01 {
    letter-spacing: 0rem;
    width: 100%;
    font-size: 1.75em;
  }
  #text02 {
    letter-spacing: 0rem;
    width: 100%;
    font-size: 1.5em;
    line-height: 1;
  }
  #text03,
  #text04,
  #text05 {
    letter-spacing: 0rem;
    width: 100%;
    font-size: 1em;
    line-height: 1.25;
  }
  #text03:not(:first-child),
  #text04:not(:first-child),
  #text05:not(:first-child) {
    margin-top: 0.375rem !important;
  }
  #text03:not(:last-child),
  #text04:not(:last-child),
  #text05:not(:last-child) {
    margin-bottom: 0.375rem !important;
  }
  #text06 {
    letter-spacing: 0rem;
    width: 100%;
    font-size: 1em;
    line-height: 1.25;
  }
  #text06:not(:first-child) {
    margin-top: 0.375rem !important;
  }
  #text06:not(:last-child) {
    margin-bottom: 0.375rem !important;
  }
  body:before {
    position: fixed;
    height: 100%;
    width: 100%;
    background-position: bottom right;
    background-size: cover;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@media (max-width: 600px), (max-width: 480px), (max-width: 360px) {
  
  #image01 .frame {
    width: 9rem;
  }
  body:before {
    position: fixed;
    height: 100%;
    width: 100%;
    background-position: bottom right;
    background-size: cover;
    background-attachment: fixed;
  }
  #image04 .frame {
    width: 1.5rem;
  }
}

@font-face {
  src: url(../fonts/rainyhearts.ttf);
  font-family: hearts;
}

@font-face {
  src: url(../fonts/winterminie.ttf);
  font-family: 'winterminie';
}

@keyframes floating {
  0% {
    transform: translate(0, 0px);
  }
  50% {
    transform: translate(0, 15px);
  }
  100% {
    transform: translate(0, -0px);
  }
}

* {
  cursor: url('https://cur.cursors-4u.net/others/oth-9/oth800.cur'), auto !important;
}

.name-container {
  background-image: url('../img/NameBorder.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  width: fit-content;
}

.social-links-container {
    margin-top: 1.75em;
}
