/* === CUSTOM FONTS === */
@font-face {
    font-family: 'TomorrowNight';
    src: url('https://ambattii.neocities.org/assets/fonts/TomorrowNightFont/TomorrowNight.woff2') format('woff2'),
         url('https://ambattii.neocities.org/assets/fonts/TomorrowNightFont/TomorrowNight.woff') format('woff'),
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'CurlyGirly';
    src: url('https://ambattii.neocities.org/assets/fonts/everydayample.woff2') format('woff2'),
         url('https://ambattii.neocities.org/assets/fonts/everydayample.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

.pixel-font {
  image-rendering: pixelated;
  -webkit-font-smoothing: none;
  -moz-osx-font-smoothing: grayscale;
  font-smooth: never;
}
n
/* Wave text keyframes */
@keyframes wave {
  0%, 100% { transform: translateY(0); }
  25% { transform: translateY(-15px); }
  50% { transform: translateY(0); }
  75% { transform: translateY(15px); }
}

.wave-letter {
  display: inline-block;
  animation-delay: calc(var(--i) * 0.1s);
}

/* === Variables === */
:root {
    --background:#b1e1e2;
    --color:#FFF;
    --bodyfont: 'CurlyGirly', sans-serif;
    --headerfont: 'TomorrowNight', sans-serif;
}

/* Reset */
* { margin:0; padding:0; box-sizing:border-box; }
img { max-width:95%; margin:5px; }

body {
    font:1.05rem var(--bodyfont);
    color:var(--color);
    background: url(https://ambattii.neocities.org/assets/front%20page/sitebg.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed; 
    background-size: cover; 
    overflow: hidden;
    
}

/* === SCALING === */
html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: black;
}

#scale-container {
  width: 1920px;
  height: 1080px;
  transform-origin: top left;
  position: fixed;
  top: 0;
  left: 0;
}


@media (max-width: 1920px), (max-height: 1080px) {
    #scale-container {
        transform: scale(min(100vw/1920, 100vh/1080));
    }
}

/* HEADER */
header {
    width:100%;
    max-width:1920px;
    height:275px;
    background: transparent;
    background-size: contain;
    margin:0 auto 10px;
    position: relative;
    text-align: center;
}

/* STAMP BOX */
.stamp-box {
    width: 775px;
    height: 143px;
    margin:0 auto 10px;
    background: url(https://ambattii.neocities.org/assets/front%20page/stampbox.png) no-repeat center;
    background-size: contain;
    position: relative;
    padding-left: 23px;
    box-sizing: border-box;
}
.stamp-box-interior {
    background: transparent;
    width: 729px;
    height: 128px;
    padding: 33px;
    border-radius: 8px;
    text-align: center; 
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
}

.marquee-item { display: inline-block; padding-right: 1rem; }
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 50s linear infinite;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* MAIN CENTER CONTAINER */
#container {
    width:100%;
    max-width:1920px;
    margin:0 auto;
    padding:10px;
    background: transparent;
}

/* SIDE COLUMNS */
#columns {
    display:flex;
    justify-content:center;
    align-items:flex-start;
    gap:10px;
    flex-wrap:nowrap;
}

/* LOADING SCREEN */
#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(https://ambattii.neocities.org/assets/front%20page/loading.gif);
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed; 
  background-size: cover; 
  overflow: hidden;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  flex-direction: column;
}

.loading-content h1 {
  font-family: 'TomorrowNight', sans-serif;
  font-size: 2rem;
  margin-bottom: 20px;
}

/* HEADER BUTTONS */


.headerbutton-container {
  position: absolute;
  z-index: 1000; 
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}
.headerbutton-container button {
  pointer-events: auto;
}

.headerbutton {
    height: 248px;
    width: 248px;
    background: url(https://ambattii.neocities.org/assets/front%20page/aboutmeUp.png) no-repeat center;
    background-size: contain;
    padding: 0px;
    position: absolute;
    left: 160px;
    top: 10px;
    border: none;
    outline: none;
    z-index: 1001;

}

.headerbutton:active {
    background-image: url(https://ambattii.neocities.org/assets/front%20page/aboutmeDown.png);
}

.headerbutton2 {
    height: 203px;
    width: 180px;
    background: url(https://ambattii.neocities.org/assets/front%20page/myartUp.png) no-repeat center;
    background-size: contain;
    padding: 0px;
    position: absolute;
    left: 398px;
    top: 75px;
    border: none;
    outline: none;
    z-index: 1001;

}

.headerbutton2:active {
    background-image: url(https://ambattii.neocities.org/assets/front%20page/myartDown.png);
}

.headerbutton3 {
    height: 203px;
    width: 180px;
    background: url(https://ambattii.neocities.org/assets/front%20page/funstuffUp.png) no-repeat center;
    background-size: contain;
    padding: 0px;
    position: absolute;
    right: 398px;
    top: 75px;
    border: none;
    outline: none;
    z-index: 1001;

}

.headerbutton3:active {
    background-image: url(https://ambattii.neocities.org/assets/front%20page/funstuffDown.png);
}

.headerbutton4 {
    height: 248px;
    width: 248px;
    background: url(https://ambattii.neocities.org/assets/front%20page/intouchUp.png) no-repeat center;
    background-size: contain;
    padding: 0px;
    position: absolute;
    right: 160px;
    top: 10px;
    border: none;
    outline: none;
    z-index: 1001;
}

.headerbutton4:active {
    background-image: url(https://ambattii.neocities.org/assets/front%20page/intouchDown.png);
}

.headerbutton,
.headerbutton2,
.headerbutton3,
.headerbutton4 {
    will-change: transform; 
}

/* Preload header button active images */
body::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  background:
    url("https://ambattii.neocities.org/assets/front%20page/aboutmeDown.png"),
    url("https://ambattii.neocities.org/assets/front%20page/myartDown.png"),
    url("https://ambattii.neocities.org/assets/front%20page/funstuffDown.png"),
    url("https://ambattii.neocities.org/assets/front%20page/intouchDown.png");
}

/* DROPDOWN MENUS */
.dropdown {
  font-size: 0.9em;
  font-family: 'CurlyGirly';
  position: absolute;
  top: 100%; 
  left: 0;    
  display: none;
  flex-direction: column;
  background: #FFF;
  box-shadow: 0px 4px 0px rgba(0,0,0,0.2);
  z-index: 1;
  min-width: 150px;
  max-width: 150px;
  border-radius: 10px; 
  overflow: hidden;    
  pointer-events: auto; 
  border: 1px solid black;
  box-shadow: 2px 2px 0px black;
  text-align: left;
  font-size: 12pt;
}

.dropdown a {
  padding: 8px 15px;
  text-decoration: none;
  color: #000;
  display: block;
  
}

.dropdown a:hover {
  background-color: #000;
}

/* ABOUT ME DROPDOWN */

.dropdown-aboutme {
  background: linear-gradient(180deg, #fb45a2, #fdb2d9);
  box-shadow: 3px 3px 0px #fb45a2;
  border: 1px solid #fb45a2;
  
}
.dropdown-aboutme a {
  color: #3f003b;
  border: 1px solid #fb45a2;
}
.dropdown-aboutme a:hover {
  background: #7ce85a;
  color: #FFF;
  border: 1px solid #7ce85a;
}


/* MY ART DROPDOWN */

.dropdown-myart {
  background: linear-gradient(180deg, #4690f5, #c3dbfc);
  color: #FFF;
  box-shadow: 3px 3px 0px #4690f5;
  border: 1px solid #4690f5;

  
}
.dropdown-myart a {
  color: #29226b;
  border: 1px solid #4690f5;

  
}
.dropdown-myart a:hover {
  background: #f90080;
  color: #FFF;
  border: 1px solid #f90080;

}

/* FUN STUFF DROPDOWN */

.dropdown-funstuff {
  background: linear-gradient(180deg, #f90080, #fdb2d9);
    box-shadow: 3px 3px 0px #fb45a2;
  border: 1px solid #fb45a2;
}
.dropdown-funstuff a {
  color: #3f003b;
    border: 1px solid #fb45a2;
}
.dropdown-funstuff a:hover {
  background: #a15cea;
  color: #FFF;
  border: 1px solid #a15cea;
}

/* GET IN TOUCH DROPDOWN */

.dropdown-intouch {
  background: linear-gradient(180deg, #7ce85a, #cff7c3);  
  color: #FFF;
    box-shadow: 3px 3px 0px #7ce85a;
  border: 1px solid #7ce85a;
}
.dropdown-intouch a {
  color: #1f5429;
    border: 1px solid #7ce85a;
}
.dropdown-intouch a:hover {
  background: #4690f5;
  color: #FFF;
  border: 1px solid #4690f5;
}

/* SIDEBARS */
.sidebar {
    position: absolute; 
    display: flex;
    flex-direction: column;
    gap: 30px;
    z-index: 10;
}
.sidebar.left { left: 30px; top: 295px; }
.sidebar.right { right: 30px; top: 295px; bottom: -400px; }

.menu {
    width: 508px;
    height: 298px;
    background: url(https://ambattii.neocities.org/assets/front%20page/sidebox.png) no-repeat center;
    background-size: contain;
    padding: 0px;
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 140px;
    flex-shrink: 0;
}
.sidebar-box {
    background: transparent;
    padding: 15px;
    border-radius: 0px;
    text-align: center; 
}
.sidebar-box h2 { margin-bottom: 8px; font-size: 1rem; }
.sidebar-box img { max-width: 100%; height: auto; margin: 5px 0; }
.sidebar-box p { margin-top: 5px; line-height: 1.4; }

.sidebar-header {
    color: #fff;
    margin-bottom: 5px;
    position: absolute;
    top: -35px;
    left: 31px;
    background: transparent;
    padding: 6px 10px;
    border-radius: 6px;
    z-index: 500;
}

.sidebar-header-lower {
    color: #fff;
    margin-bottom: 5px;
    position: absolute;
    top: 282px;
    left: 31px;
    background: transparent;
    padding: 6px 10px;
    border-radius: 6px;
    z-index: 500;
}

/* MAIN CONTENT */
main {
    width: 775px;
    height: 461px;
    margin: 0 auto;
    background: url(https://ambattii.neocities.org/assets/front%20page/newsbox.png) no-repeat center;
    background-size: contain;
    position: relative;
    padding: 0;
    box-sizing: border-box;
    background-color: transparent;
    line-height: 1.5;
}
.scroll-box {
    position: absolute;
    top: 35px;
    left: 60px;
    right: 47px;
    bottom: 25px;
    overflow-y: auto;
    padding-right: 10px;
    box-sizing: border-box;
    scrollbar-color: #f90080 transparent; 
    scrollbar-width: auto;
}

.h1-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  border-bottom: 3px solid white; 
  padding-right: 150px;
  box-sizing: border-box;
}

.h1-wrapper h1 { font-family: "TomorrowNight"; font-size:1.8em; letter-spacing: 0.05em;}

.h1-wrapper .subtext {
  font-family: "TomorrowNight"; 
  font-size:1em; 
  letter-spacing: 0.05em;
  position: absolute;
  right: 0;
  bottom: 0;
  line-height: 0.8;
  transform: translateY(-50%);
}

#front-latest-body {
  padding-top: 20px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 11;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.5;
  overflow-y: hidden;
}

.front-latest-body {
  position: relative;
}

.read-more {
  display: block;
  margin-top: 5px;
  color: blue;
  text-decoration: underline;
  font-weight: bold;
}




h1 { font-family: "TomorrowNight"; font-size:1.8em; letter-spacing: 0.05em;}
h2 { font-family: "TomorrowNight"; font-size: 1.6em; margin: 5px 0; color: white; text-shadow: -2px -2px 0 #261729,2px -2px 0 #261729,-2px 2px 0 #261729,2px 2px 0 #261729,3px 5px 0 #261729; letter-spacing: 0.05em;}
main h3 { font-size:1.4em; }
p { margin:10px 0; line-height:1.5; }
main a { color: #7ce85a; }
main a:visited { color: #f90080; }

/* MOOD BOX BLOG */

.moodwrapper {
  display: grid;
  grid-template-columns: 300px;
  grid-gap: 7px;
  background-color: #261729;
  border-radius: 20px;
  box-sizing: border-box;
  width: 350px;
  padding-left: 15px;
  padding-top: 15px;
  padding-bottom: 15px;
  border: 10px ridge #f90080;
  margin-left: 150px;

}

.moodbox {
  background-color: #f90080;
  color: #261729;
  border-radius: 20px;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 14px;
  border: 1px solid #800053;
  filter: drop-shadow(2px 2px 0px #800053);
  text-align: left;
}

.moodwrapper .moodbox:nth-child(5n + 1) { background-color: #f90080; border: 1px solid #800053; filter: drop-shadow(2px 2px 0px #800053); } /* pink */
.moodwrapper .moodbox:nth-child(5n + 1) .mbp { color: #7ce85a; filter: drop-shadow(2px 2px 0px #1f5429); }

.moodwrapper .moodbox:nth-child(5n + 2) { background-color: #4690f5; border: 1px solid #123570; filter: drop-shadow(2px 2px 0px #123570); } /* blue */
.moodwrapper .moodbox:nth-child(5n + 2) .mbp { color: #f90080; filter: drop-shadow(2px 2px 0px #800053); }

.moodwrapper .moodbox:nth-child(5n + 3) { background-color: #7ce85a; border: 1px solid #1f5429; filter: drop-shadow(2px 2px 0px #1f5429); } /* green */
.moodwrapper .moodbox:nth-child(5n + 3) .mbp { color: #a15cea; filter: drop-shadow(2px 2px 0px #47308b); }

.moodwrapper .moodbox:nth-child(5n + 4) { background-color: #ffe46f; border: 1px solid #ea8c44; filter: drop-shadow(2px 2px 0px #c1641e); } /* yellow */
.moodwrapper .moodbox:nth-child(5n + 4) .mbp { color: #4690f5; filter: drop-shadow(2px 2px 0px #123570); }

.moodwrapper .moodbox:nth-child(5n + 5) { background-color: #a15cea; border: 1px solid #47308b; filter: drop-shadow(2px 2px 0px #47308b); } /* purple */
.moodwrapper .moodbox:nth-child(5n + 5) .mbp { color: #ffe46f; filter: drop-shadow(2px 2px 0px #c1641e); }

.mbp { font-weight: bold; font-family: "TomorrowNight"; font-size: 1em; color: #7ce85a; vertical-align: 4px; filter: drop-shadow(2px 2px 0px #800053); letter-spacing: 1.2px; line-height:35px; }

/* GALLERY */

.gallerywrapper {
  display: grid;
  grid-template-columns: repeat(5, auto);
  gap: 10px;
  background-color: transparent;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  justify-content: center;
}

.gallerywrapper#nocturne {
  display: grid;
  grid-template-columns: repeat(6, auto);
  gap: 20px;
  justify-content: center;
  background-color: transparent;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.gallerybox {
  background-color: #f90080;
  color: #261729;
  border-radius: 20px;
  font-size: 14px;
  border: 1px solid #800053;
  filter: drop-shadow(2px 2px 0px #800053);
  text-align: center;
  display: inline-block;
  padding: 10px;
}

.gallerybox img {
  border:1px solid black;
  border-radius: 10px;
  padding: 0;
  margin: 0;
  display: block;
  max-width: 100%
}

.gallerybox#nocturne {
  background-color: transparent;
  color: #261729;
  border-radius: 0px;
  padding-top: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  padding-right: 0px;
  font-size: 0px;
  border: 3px outset #67c4ff;
  filter: drop-shadow(0px 0px 0px #800053);
  text-align: center;
  display: block;
  width: fit-content;
  height: fit-content;
  line-height: 0px;
  margin: 0;
  align-items: start;
  justify-items: start;
}


.gallerybox#nocturne img {
  border: none;
  border-radius: 0;
  padding: 0;
  margin: 0;
}



.gallerywrapper:not(#nocturne) .gallerybox:nth-child(5n + 1) { background-color: #f90080; border: 1px solid #800053; filter: drop-shadow(2px 2px 0px #800053); } /* pink */
.gallerywrapper:not(#nocturne) .gallerybox:nth-child(5n + 1) .mbp { color: #7ce85a; filter: drop-shadow(2px 2px 0px #1f5429); }

.gallerywrapper:not(#nocturne) .gallerybox:nth-child(5n + 2) { background-color: #4690f5; border: 1px solid #123570; filter: drop-shadow(2px 2px 0px #123570); } /* blue */
.gallerywrapper:not(#nocturne) .gallerybox:nth-child(5n + 2) .mbp { color: #f90080; filter: drop-shadow(2px 2px 0px #800053); }

.gallerywrapper:not(#nocturne) .gallerybox:nth-child(5n + 3) { background-color: #7ce85a; border: 1px solid #1f5429; filter: drop-shadow(2px 2px 0px #1f5429); } /* green */
.gallerywrapper:not(#nocturne) .gallerybox:nth-child(5n + 3) .mbp { color: #a15cea; filter: drop-shadow(2px 2px 0px #47308b); }

.gallerywrapper:not(#nocturne) .gallerybox:nth-child(5n + 4) { background-color: #ffe46f; border: 1px solid #ea8c44; filter: drop-shadow(2px 2px 0px #c1641e); } /* yellow */
.gallerywrapper:not(#nocturne) .gallerybox:nth-child(5n + 4) .mbp { color: #4690f5; filter: drop-shadow(2px 2px 0px #123570); }

.gallerywrapper:not(#nocturne) .gallerybox:nth-child(5n + 5) { background-color: #a15cea; border: 1px solid #47308b; filter: drop-shadow(2px 2px 0px #47308b); } /* purple */
.gallerywrapper:not(#nocturne) .gallerybox:nth-child(5n + 5) .mbp { color: #ffe46f; filter: drop-shadow(2px 2px 0px #c1641e); }

#FrontGallery {
  display: flex;
  max-width: 1000px;
  margin: 0 auto;
  justify-content: center;
  text-align: center;
  padding: 15px;
}

.frontgallerybox {
  background-color: transparent;
  color: #261729;
  border-radius: 20px;
  font-size: 14px;
  border: none;
  text-align: center;
  display: inline-block;
  padding: 0px;
}

.devlogbox {
  
  background-color: transparent;
  color: #261729;
  border-radius: 20px;
  font-size: 14px;
  border: none;
  text-align: center;
  display: inline-block;
  padding: 12px;
  
}

.devlogbox img {
  
  border:1px solid black;
  border-radius: 20px;
  padding-top: 0;
  margin: 0;
  display: block;
  max-width: 431px;
  max-height: auto;
  
}

.frontgallerybox img {
  border:1px solid black;
  border-radius: 20px;
  padding: 0;
  margin: 0;
  display: block;
  max-width: 100%
}

/* GALLERY POPUP MENU */
#popupOverlay {
  position: fixed;
  inset: 0;
  background:rgba(0,0,0,0);
  z-index: 5000;
  transition: background 0.3s ease;
}

#popupWrapper {
  top: 5vh;
  bottom: 5vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  gap: 10px;
}

#popupBox {
  background: white;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 3px 3px 0px #44003d;
  position: relative;
  border: 20px ridge #e62c79;
  text-align: center;
  display: inline-block; 
  box-sizing: border-box;
  z-index: 1;

  transform: translateY(200%);
  transition: transform 0.6s ease;
}

#popupBox img {

  max-width: 1750px;
  max-height: 600px;
  height: auto;
  width: auto;
  object-fit: contain;
  
  position: relative;
  overflow: visible;
  
}

#popupTextbox {

  background: #d0adf4; 
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 10px;
  border-radius: 50px;
  box-shadow: 3px 3px 0px #673b96;
  position: relative;
  border: 6px inset #9f65e7;
  color: #513596;
  width: 100%;
  display: block;
  max-width: 40%;
  max-height: 15.5%;

  transform: translateY(1000%);
  transition: transform 0.7s ease;

}

#popupOverlay.show {
  background: rgba(0,0,0,0.9);
}

#popupOverlay.show #popupBox, #popupOverlay.show #popupTextbox {
  transform: translateY(0);
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 12px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  border: 6px inset #9f65e7;
  border-radius: 5px;
  background: #d0adf4;
  z-index: 4;
  color: white;
  padding-top: -3px;
  padding-bottom: -3px;
  padding-left: 3px;
  padding-right: 3px;
  text-shadow: -1px -1px 0 #9f65e7,1px -1px 0 #9f65e7,-1px 1px 0 #9f65e7,1px 1px 0 #9f65e7,1px 3px 0 #9f65e7; letter-spacing: 0.05em;
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #d0adf4;
  color: white;
  border: none;
  font-size: 40px;
  padding: 15px;
  cursor: pointer;
  border: 6px inset #9f65e7;
  border-radius: 25px;
  box-shadow: 3px 3px 0px #673b96;
  z-index: 2;
}

#prevBtn { left: -120px; color: white; text-shadow: -2px -2px 0 #9f65e7,2px -2px 0 #9f65e7,-2px 2px 0 #9f65e7,2px 2px 0 #9f65e7,3px 5px 0 #9f65e7; letter-spacing: 0.05em; }
#nextBtn { right: -120px; color: white; text-shadow: -2px -2px 0 #9f65e7,2px -2px 0 #9f65e7,-2px 2px 0 #9f65e7,2px 2px 0 #9f65e7,3px 5px 0 #9f65e7; letter-spacing: 0.05em; }

.gallery-year {
  grid-column: 1 / -1;
  border-bottom: 3px dotted white;
  margin: 5px;
  text-align: left;
}

.gallery-year::after {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  break-after: always;
}

.hidden {
  display: none;
  pointer-events: none;
}


/*POST LIST STYLE*/
#postlistdiv ul {
  font-size: 1.2em;
  padding: 0;
  list-style-type: none;
}

#recentpostlistdiv ul {
  font-size: 1.2em;
  padding: 0;
  list-style-type: none;
}
.moreposts {
  font-size: 0.85em;
  margin-top: 0.2em;
}

/*NEXT AND PREVIOUS LINKS STYLE*/
#nextprev {
  text-align: center;
  margin-top: 1.4em;
}

/*DISQUS STYLE*/
#disqus_thread {
  margin-top: 1.6em;
}

/*FOOTER STYLE*/
#footer {
  font-size: 0.8em;
  padding: 0 5% 10px 5%;

}


.siteheaderLogo{
  
  position: relative;
  transform-origin: bottom center;
  animation: swing 2s infinite ease-in-out;
  z-index: 100;
  
}

.siteheaderImg{
  
  position: relative;
  bottom: 285px;
  width: 100%;
  height: 275px;
  background-position: center;
  background-repeat: no-repeat;
  
}

@keyframes swing {
  0%   { transform: rotate(-1deg); }
  50%  { transform: rotate(1deg); }
  100% { transform: rotate(-1deg); }
}