@import url('https://fonts.googleapis.com/css?family=Pacifico');

#editable-text {
  font-family: 'Pacifico', cursive;
  font-size: 2rem;
  color: #00aad4;
  text-shadow: 0 0 12px #00aad4, 0 0 4px #fff, 0 0 18px #00aad4;
  font-weight: 100;
  outline: none;
  border: none;
  background: transparent;
  padding: 0.2rem 0.5rem;
  border-radius: 0.5rem;
  transition: background 0.2s;
  max-width: 320px;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* --- Reloj y Calendario --- */
#clock {
  position: fixed;
  top: 10px;
  left: 10px;
  color: #fff;
  font-family: 'Noto Sans', sans-serif;
  font-size: 1rem;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 0, 0, 0.5);
  padding: 0.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

#calendar {
  position: fixed;
  top: 10px;
  right: 10px;
  color: #fff;
  font-family: 'Noto Sans', sans-serif;
  font-size: 1rem;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 0, 0, 0.5);
  padding: 0.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  cursor: pointer;
}

#time, #date {
  font-weight: 500;
}

/* --- Modal del Calendario --- */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.7);
}

.modal-content {
  background-color: #1a1a1a;
  margin: 5% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 90%;
  max-width: 500px;
  border-radius: 0.5rem;
  color: #fff;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover {
  color: #fff;
}

#calendar-header {
  text-align: center;
  position: relative;
  margin-bottom: 20px;
  height: 40px;
  line-height: 40px;
}

#prev-month, #next-month {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

#prev-month {
  left: 0;
}

#next-month {
  right: 0;
}

#current-month-year {
  display: inline-block;
  font-size: 1.2rem;
  line-height: 40px;
}

#calendar-header button {
  background: #00aad4;
  color: #fff;
  border: none;
  padding: 0.5rem;
  border-radius: 0.25rem;
  cursor: pointer;
}

#calendar-header button:hover {
  background: #0088a9;
}

#calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
  margin-bottom: 20px;
}

.calendar-day {
  padding: 10px;
  text-align: center;
  cursor: pointer;
  border-radius: 0.25rem;
  background: rgba(255,255,255,0.1);
}

.calendar-day:hover {
  background: rgba(255,255,255,0.2);
}

.calendar-day.today {
  background: #00aad4;
  color: #fff;
}

.calendar-day.other-month {
  color: #666;
}

#day-notes {
  border-top: 1px solid #444;
  padding-top: 20px;
}

#note-text {
  width: 100%;
  height: 100px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 0.25rem;
  padding: 0.5rem;
  color: #fff;
  resize: vertical;
}

#save-note {
  background: #00aad4;
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  cursor: pointer;
  margin-top: 0.5rem;
}

#save-note:hover {
  background: #0088a9;
}

#saved-notes {
  margin-top: 1rem;
  padding: 0.5rem;
  background: rgba(255,255,255,0.05);
  border-radius: 0.25rem;
  max-height: 200px;
  overflow-y: auto;
}

/* --- Notas rápidas --- */
#quick-notes-container {
  background: rgb(255 255 255 / 5%);
  border-radius: 1rem;
  padding: 1rem 0.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  max-width: auto;
}
#quick-notes-title {
  font-family: 'Pacifico', cursive;
  font-size: 1.2rem;
  color: #00aad4;
  margin-bottom: 0.5rem;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
#quick-note-input {
  width: 100%;
  border-radius: 0.5rem;
  border: none;
  padding: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  background: rgb(255 255 255 / 10%);
  color: #fff;
  resize: vertical;
}
#add-note-btn, #clear-notes-btn {
  background: #00aad4;
  color: #fff;
  border: none;
  border-radius: 0.5rem;
  padding: 0.3rem 1rem;
  font-size: 0.95rem;
  cursor: pointer;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  transition: background 0.2s;
}
#add-note-btn:hover {
  background: #0088a9;
}
#clear-notes-btn {
  background: #ff3b3b;
}
#clear-notes-btn:hover {
  background: #d10000;
}
#quick-notes-list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0 0;
}
.quick-note-item {
  background: rgb(255 255 255 / 8%);
  color: #fff;
  border-radius: 0.5rem;
  padding: 0.4rem 0.8rem;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
}
.delete-note-btn {
  background: transparent;
  border: none;
  color: #ff3b3b;
  font-size: 1.1em;
  cursor: pointer;
  margin-left: 0.5em;
  transition: color 0.2s;
}
.delete-note-btn:hover {
  color: #fff;
}


/* Mueve el texto luminoso más a la derecha debajo de los iconos sociales */
.txt-ne-right {
  margin-left: 2.5rem;
  display: inline-block;
}

#editable-text:focus {
  background: rgb(255 255 255 / 5%);
  outline: none;
  border: none;
}
/* Título del historial de búsquedas */
#search-history-title {
  font-family: 'Pacifico', cursive;
  font-size: 1.3rem;
  color: #00aad4;
  text-shadow: 0px 0px 10px #00aad4, 0px 0px 2px #fff;
}

/* Elimina brillo extra en el h3 luminoso */
.txt-ne-right {
  font-weight: 100;
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
  letter-spacing: 1px;
  text-align: center;
}

#search-history-container {
  background: rgb(255 255 255 / 5%);
  border-radius: 1rem;
  padding: 1rem 0.5rem;
  margin-top: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.delete-history-btn {
  background: transparent;
  border: none;
  color: #fff;
  margin-left: 0.5em;
  font-size: 1em;
  cursor: pointer;
  transition: color 0.2s;
  vertical-align: middle;
}
.delete-history-btn:hover {
  color: #ff3b3b;
}

#clear-history-btn {
  background: #ff3b3b;
  color: #fff;
  border: none;
  border-radius: 1rem;
  padding: 0.3rem 1rem;
  font-size: 0.95rem;
  cursor: pointer;
  margin-bottom: 0.5rem;
  transition: background 0.2s;
}
#clear-history-btn:hover {
  background: #d10000;
}
/* Nube de historial de búsquedas */
.search-history-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.search-history-tag {
  background: #00aad4;
  color: #fff;
  padding: 0.3rem 0.8rem;
  border-radius: 1rem;
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: background 0.2s, transform 0.2s;
  margin-bottom: 0.2rem;
}
.search-history-tag:hover {
  background: #0088a9;
  transform: scale(1.08);
}
:root {
  --body-color: 48 48 58;
  
  --font-color: 255 255 255;
  --highlight-color: 0 0 0;
}

body {
  background: linear-gradient(to top, #1a1a1a, #636363);
  margin: 0px;
}

body::-webkit-scrollbar {
  width: 4px;
}

body::-webkit-scrollbar-track {
  background-color: rgb(var(--theme-background));
}

body::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
}

* {
  box-sizing: border-box;
}

h1, h2, h3, h4, input, select, button, span, a, p {
  color: rgb(var(--font-color));
  font-family: "Noto Sans", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  margin: 0px;
}

button, a, input {  
  outline: none;
}

.highlight {
  color: rgb(var(--highlight-color));
}

.fancy-scrollbar::-webkit-scrollbar {
  height: 4px;
  width: 4px;
}

.fancy-scrollbar::-webkit-scrollbar-track {
  background-color: transparent;
}

.fancy-scrollbar::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
}

.no-scrollbar::-webkit-scrollbar {
  height: 0px;
  width: 0px;
}

#main-wrapper {
  height: 100%;
  overflow: auto;
}

#main {
  height: 100%;
}

#content {
  padding: 1rem;
}

#links-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.mycontainer {
  max-width: 900px;
  margin: 0 auto;
  padding: 1.5rem 1rem 0 1rem;
  width: 100%;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#main-wrapper {
  min-height: 100vh;
  height: 100%;
  overflow: auto;
  display: flex;
  flex-direction: column;
}

#main {
  flex: 1 1 auto;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
}

#apps-container {
  display: grid;
  gap: 0.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin: 2rem 0rem;
}

h3 {
  font-family: 'Pacifico', cursive;
  font-weight: 100;
  margin: 0px;
  position: absolute;
  top: 20% !important;
  left: 50%;
  transform: translate(-50% ,-50%);
  color: #fff;
  font-size: 2rem;
  text-shadow: 0px 0px 20px #00aad4;
  -webkit-animation: blinkH1 5s  infinite;
  animation: blinkH1 5s  infinite;
  width: 90vw;
  max-width: 600px;
  text-align: center;
}

@media (max-width: 1300px) {
  .mycontainer {
    max-width: 100vw;
    padding: 1rem 0.5rem 0 0.5rem;
  }
  #main-wrapper {
    width: 100vw;
  }
  h3 {
    font-size: 1.5rem;
    left: 50%;
    width: 98vw;
    max-width: 98vw;
  }
}

@media (max-width: 900px) {
  .mycontainer {
    max-width: 100vw;
    padding: 1rem 0.2rem 0 0.2rem;
    min-height: 70vh;
  }
  #main-wrapper {
    min-height: 100vh;
  }
  #main {
    min-height: 70vh;
  }
  #apps-container {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0.3rem;
  }
  h3 {
    font-size: 1.2rem;
    left: 50%;
    width: 98vw;
    max-width: 98vw;
  }
}

@media (max-width: 600px) {
  .mycontainer {
    max-width: 100vw;
    padding: 0.5rem 0.1rem 0 0.1rem;
    min-height: 60vh;
  }
  #main-wrapper {
    min-height: 100vh;
  }
  #main {
    min-height: 60vh;
  }
  #links-container {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }
  #apps-container {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }
  h3 {
    font-size: 1rem;
    left: 50%;
    width: 98vw;
    max-width: 98vw;
    top: 15% !important;
  }
  #search-input-container > input {
    font-size: 0.9rem;
    height: 2.2rem;
    padding: 0.5rem;
  }
  #search-container > button {
    width: 2.2rem;
    font-size: 0.9rem;
  }
}

#links-container {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 0.75rem;
}

#links-container > a {
  color: rgb(255 255 255 / 80%);
  font-size: 0.75rem;
  text-decoration: none;
  border: 0.5px solid rgb(250, 0, 0);
  font-weight: bold;
}


#header-container {
  width: 100%;
  position: relative;
  margin-top: 1rem;
}

#logo {
  display: flex;
  width: 100%; 
  border-radius: 0.5rem;
  border-bottom-left-radius: 0.2rem;
  border-bottom-right-radius: 0.2rem;
}



#search-container {
  display: flex;
  gap: 0.2rem;
  margin-top: 0.2rem;  
}

#search-input-container > input,
#search-container > button {
  background-color: rgb(255 255 255 / 10%);
  color: rgb(255 255 255 / 80%);
  font-size: 1rem;
  border: none;
}

#search-input-container > input:focus,
#search-container > button:focus {
  background-color: rgb(255 255 255 / 16%);
}

#search-container > button {
  width: 3.5rem;
  border-radius: 0.2rem;
  cursor: pointer;
}

#search-container > #image-button {  
  border-bottom-right-radius: 0.5rem;
}

#search-input-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background-color: rgb(255 255 255 / 10%);
  padding-left: 1rem;
  border-radius: 0.2rem;
  border-bottom-left-radius: 0.5rem;
  width: 100%;
}

#search-input-container > img {
  height: 1.5rem;
}

#search-input-container > input {
  width: 100%;
  height: 3.25rem;
  background-color: transparent;
  padding: 1rem;  
  padding-left: 1rem;
}

#apps-container {
  display: grid;
  gap: 0.2rem;
  grid-template-columns: repeat(2, 50%);  
  margin: 3rem 0rem;
}

#apps-container > a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgb(255 255 255 / 5%);
  padding: 1rem 0.75rem;
  border-radius: 0.2rem;
  text-decoration: none;
}

#apps-container > a > i {
  height: 2rem; 
  width: 2rem; 
  flex-shrink: 0;
  font-size: 1.5rem;
  line-height: 2rem; 
  text-align: center;
}

#apps-container > a > .label {
  width: calc(100% - 2.5rem);
  display: flex;
  flex-direction: column;
  align-self: flex-start;
  overflow: hidden;
}

#apps-container > a > .label > :is(.name, .url) {
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

#apps-container > a > .label > .name {
  font-size: 0.8rem;
  font-weight: bold;
}

#apps-container > a > .label > .url {
  font-size: 0.7rem;
  color: rgba(0, 0, 0, 0.5);
}

#apps-container > a:is(:hover, :focus) {
  background-color: rgb(255 255 255 / 16%);
}

#apps-container > a:first-child {
  color: rgb(255, 238, 0);
  border-top-left-radius: 0.5rem;
}

#apps-container > a:nth-child(2) {  
  color: rgb(194, 126, 0);
  border-top-right-radius: 0.5rem;
}

#apps-container > a:nth-child(3) {  
  color: rgb(41, 41, 41);
}

#apps-container > a:nth-child(4) {  
  color: rgb(28, 228, 105);
}

#apps-container > a:nth-child(5) {  
  color: rgb(14, 14, 14);
}

#apps-container > a:nth-child(6){
  color: rgb(148, 0, 0);
}

#apps-container > a:nth-child(7) {  
  color: rgb(0, 209, 63);
  border-bottom-left-radius: 0.5rem;
}

#apps-container > a:nth-child(8) {  
  color:rgb(30, 2, 151);
  border-bottom-left-radius: 0.5rem;
}

#apps-container > a:nth-child(9) {  
  color:rgb(44, 17, 163);
  border-bottom-left-radius: 0.5rem;
}

#apps-container > a:nth-child(10) {  
  color:rgb(163, 148, 17);
  border-bottom-left-radius: 0.5rem;
}

#apps-container > a:nth-child(11) {  
  color:rgb(0, 0, 0);
  border-bottom-left-radius: 0.5rem;
}

#apps-container > a:nth-child(12) {  
  color:rgba(56, 56, 56, 0.712);
  border-bottom-left-radius: 0.5rem;
}

#apps-container > a:nth-child(13) {  
  color: rgb(24, 14, 118);
  border-bottom-left-radius: 0.5rem;
}

#apps-container > a:nth-child(14) {  
  color: rgb(118, 14, 101);
  border-bottom-left-radius: 0.5rem;
}

#apps-container > a:nth-child(15) {  
  color: rgb(0, 183, 255);
  border-bottom-left-radius: 0.5rem;
}

#apps-container > a:nth-child(16) {  
  color: rgb(255, 255, 255);
  border-bottom-left-radius: 0.5rem;
}

#apps-container > a:nth-child(17) {  
  color: rgb(255, 255, 255);
  border-bottom-left-radius: 0.5rem;
}

#apps-container > a:last-child {
  color: rgb(255, 60, 0);
  border-bottom-right-radius: 0.5rem; 
}



@media(max-width: 1300px) {
  body {
    overflow: auto;  
  }
  
  .mycontainer{
    padding-left: 0%; 
    padding-right: 0%; 
    padding-top: 1%;
  }
  
  #main-wrapper {
    width: 100%;
    flex-grow: 1;
  }

  #editable-text {
    font-size: 15px;
  }

  h3::after {
    top: -10px !important;
    left: -30px !important;
  }
}

.social-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: right;
  gap: 8px;

}
.social-button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  outline: none;
  width: 30px;
  height: 30px;
  text-decoration: none;
  border-radius: 100%;
  background: #fff;
  text-align: center;
}
.social-button::after {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  display: block;
  width: 0;
  height: 0;
  border-radius: 100%;
  transition: 0.3s;
}
.social-button:focus, .social-button:hover {
  color: #fff;
}
.social-button:focus::after, .social-button:hover::after {
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  margin-left: calc(-50% - 1px);
}
.social-button i, .social-button svg {
  position: relative;
  z-index: 1;
  transition: 0.3s;
}
.social-button i {
  font-size: 20px;
}
.social-button svg {
  height: 40%;
  width: 40%;
}
.social-button--instagram {
  color: #3f729b; /* adjust the color to match your design */
  background-color: white;
  border: none;
  padding: 0;
  margin: 0 5px;
  font-size: 24px; /* adjust the font size to match the other icons */
}
.social-button--youtube {
  color: #ff0000; /* adjust the color to match your design */
  background-color: white;
  border: none;
  padding: 0;
  margin: 0 5px;
  font-size: 24px; /* adjust the font size to match the other icons */
}
.social-button--mail {
  color: #0072c6;
}
.social-button--mail::after {
  background: #0072c6;
}
.social-button--facebook {
  color: #3b5999;
}
.social-button--facebook::after {
  background: #3b5999;
}
.social-button--linkedin {
  color: #0077b5;
}
.social-button--linkedin::after {
  background: #0077b5;
}
.social-button--github {
  color: #6e5494;
}
.social-button--github::after {
  background: #6e5494;
}
.social-button--twitter {
  color: #00c8fa;
}
.social-button--twitter::after {
  background: #00c8fa;
}
.social-button--steam {
  color: #7da10e;
}
.social-button--steam::after {
  background: #7da10e;
}
.social-button--snapchat {
  color: #eec900;
}
.social-button--snapchat::after {
  background: #eec900;
}
.social-button--twitter {
  color: #55acee;
}
.social-button--twitter::after {
  background: #55acee;
}
.social-button--instagram {
  color: #e4405f;
}
.social-button--instagram::after {
  background: #e4405f;
}
.social-button--npmjs {
  color: #c12127;
}
.social-button--npmjs::after {
  background: #c12127;
}

/* animated logo effect */

:root {
  --atom-size: 180px;
  --atom-color-hex: #00d8ff;
  --atom-color-rgb: 0, 216, 255;
  --nucleus-size: calc(var(--atom-size) / 5);
  --electron-color-hex: #99f8ff;
  --electron-size : calc(var(--atom-size) / 25);
  --electron-orbit-size : calc(var(--atom-size) / 2.5);
  --electron-speed : 1.2s;
  --electron-speed-alpha : 1s;
  --electron-speed-omega : .8s;
}


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


/* Atom */
.atom {
  position: relative;
  width: var(--atom-size);
  height: var(--atom-size);
  animation: 20s atom infinite cubic-bezier(.5, .25, 0, .75);
}
@keyframes atom {
  0% {    transform: rotate(0deg) scale(1); }
  12.5% { transform: rotate(-45deg) scale(.9); }
  25% {   transform: rotate(-90deg) scale(1); }
  37.5% { transform: rotate(-135deg) scale(.9); }
  50% {   transform: rotate(-180deg) scale(1); }
  62.5% { transform: rotate(-225deg) scale(.9); }
  75% {   transform: rotate(-270deg) scale(1); }
  87.5% { transform: rotate(-315deg) scale(.9); }
  100% {  transform: rotate(-360deg) scale(1); }
}

/* Nucleus */

@keyframes nucleus {
  0% { transform: scale(1); }
  25% { transform: scale(.9); }
  50% { transform: scale(1); }
  75% { transform: scale(.80); }
  100% { transform: scale(1); }
}

/* Electron Orbit */
.atom > [class^="electron"] {
  border-top: solid rgba(var(--atom-color-rgb), 15) 30px;
  border-right: solid rgba(var(--atom-color-rgb), .35) 2px;
  border-bottom: solid rgba(var(--atom-color-rgb), 15) 30px;
  border-left: solid rgba(var(--atom-color-rgb), .35) 2px;
  border-radius: 100%;
  width: 75%;
  height: var(--electron-orbit-size);
  position: absolute;
  top: 50%;
  margin-top: calc(var(--electron-orbit-size) / -3);
  animation: var(--electron-speed) electron-orbit infinite linear;
}
.atom > .electron-alpha {
  transform: rotate(75deg);
  animation: var(--electron-speed-alpha) electron-orbit infinite linear;
}
.atom > .electron-omega {
  transform: rotate(-60deg);
  animation: var(--electron-speed-omega) electron-orbit infinite linear;
}
@keyframes electron-orbit {
  0% {
      border-top: solid rgba(var(--atom-color-rgb), .5) 1px;
      border-right: solid rgba(var(--atom-color-rgb), .35) 2px;
      border-bottom: solid rgba(var(--atom-color-rgb), .2) 4px;
      border-left: solid rgba(var(--atom-color-rgb), 0) 2px;
  }
  25% {
      border-top: solid rgba(var(--atom-color-rgb), .35) 1px;
      border-right: solid rgba(var(--atom-color-rgb), .2) 2px;
      border-bottom: solid rgba(var(--atom-color-rgb), 0) 4px;
      border-left: solid rgba(var(--atom-color-rgb), .5) 2px;
  }
  50% {
      border-top: solid rgba(var(--atom-color-rgb), .2) 1px;
      border-right: solid rgba(var(--atom-color-rgb), 0) 2px;
      border-bottom: solid rgba(var(--atom-color-rgb), .5) 4px;
      border-left: solid rgba(var(--atom-color-rgb), .35) 2px;
  }
  75% {
      border-top: solid rgba(var(--atom-color-rgb), 0) 1px;
      border-right: solid rgba(var(--atom-color-rgb), .5) 2px;
      border-bottom: solid rgba(var(--atom-color-rgb), .35) 4px;
      border-left: solid rgba(var(--atom-color-rgb), .2) 2px;
  }
  100% {
      border-top: solid rgba(var(--atom-color-rgb), .5) 1px;
      border-right: solid rgba(var(--atom-color-rgb), .35) 2px;
      border-bottom: solid rgba(var(--atom-color-rgb), .2) 4px;
      border-left: solid rgba(var(--atom-color-rgb), 0) 2px;
  }
}

/* Electron Unit */
.atom [class^="electron"]::after {
  content: '';
  display: block;
  width: var(--electron-size);
  height: var(--electron-size);
  background: var(--electron-color-hex);
  border-radius: 50%;
  margin-top: calc(var(--electron-size) / -3);
  position: absolute;
  top: 50%;
  left: calc(var(--electron-size) / -3);
  transform: scale(1);
  animation: calc(var(--electron-speed) * 2) electron infinite ease-in-out;
}
.atom .electron-alpha::after { animation: calc(var(--electron-speed-alpha) * 2) electron infinite ease-in-out; }
.atom .electron-omega::after { animation: calc(var(--electron-speed-omega) * 3) electron infinite ease-in-out; }
@keyframes electron {
  0% {
      left: calc(var(--electron-size) / -1);
      transform: scale(1);
  }
  12.5% {
      top: 100%;
      transform: scale(1.5);
  }
  25% {
      left: 100%;
      transform: scale(1);
  }
  37.5% {
      top: 0%;
      transform: scale(.25);
  }
  50% {
      left: calc(var(--electron-size) / -1);
      transform: scale(1);
  }
  62.5% {
      top: 100%;
      transform: scale(1.5);
  }
  75% {
      left: 100%;
      transform: scale(1);
  }
  87.5% {
      top: 0%;
      transform: scale(.25);
  }
  100% {
      left: calc(var(--electron-size) / -1);
      transform: scale(1);
  }
}

/* Shadow */
main { position: relative; }
main::after {
  content: '';
  display: block;
  position: absolute;
  top: 110%;
  left: 0;
  width: var(--atom-size);
  height: var(--nucleus-size);
  background-image: radial-gradient(closest-side, rgba(0, 0, 0, 0.37), rgba(0, 0, 0, 0));
  border-radius: 100%;
  transform: scale(1, .6);
  animation: 20s shadow infinite cubic-bezier(.5, .25, 0, .75);

}
@keyframes shadow {
  0% {    transform: scale(1, .8) translateY(0); }
  12.5% { transform: scale(.7, .7) translateY(-20px); }
  25% {   transform: scale(1, .8) translateY(0); }
  37.5% { transform: scale(.7, .7) translateY(-20px); }
  50% {   transform: scale(1, .8) translateY(0); }
  62.5% { transform: scale(.7, .7) translateY(-20px); }
  75% {   transform: scale(1, .8) translateY(0); }
  87.5% { transform: scale(.7, .7) translateY(-20px); }
  100% {  transform: scale(1, .8) translateY(0); }
}

/* Credits */

a {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Droid Sans", "Helvetica Neue", Arial, sans-serif;;
  font-size: smaller;
  font-weight: lighter;
  text-decoration: none !important;
  padding: .6rem .8rem;
  border-radius: .3rem;
  color: rgba(255, 255, 255, .25);
  background: rgba(0, 0, 0, 0);
  transition: all .35s ease-in-out;
}
a:hover {
  color: rgba(255, 255, 255, 1);
  background: rgba(0, 0, 0, .5);
}
.parent {
  border: 2px solid rgb(27, 27, 27);
  border-radius: 5%;
  margin: 1rem;
  padding: 2rem 2rem;
  text-align: center;
  background: linear-gradient(to bottom, #2a2525, #5b5b5b);
}
.child {
  display: inline-block;
  padding: 1rem 1rem;
  vertical-align: middle;
}


button {
  border: none;
  cursor: pointer;
  background-color: transparent;
  outline: none;
}



@-webkit-keyframes blinkH1 {
  0%   {
      color: #fff;
    text-shadow: 0px 0px 20px #00aad4;
  }
  19%   {
      color: #fff;
    text-shadow: 0px 0px 20px #00aad4;
  }
  20% {
      color: #9E9E9E;
    text-shadow: none;  
  }
  21% {
      color: #fff;
    text-shadow: 0px 0px 20px #00aad4;  
  }
  60% {
      color: #fff;
    text-shadow: 0px 0px 20px #00aad4;  
  }
  61% {
      color: #9E9E9E;
    text-shadow: none;  
  }
  62% {
      color: #fff;
    text-shadow: 0px 0px 20px #00aad4;  
  }
  63% {
      color: #9E9E9E;
    text-shadow: none;  
  }
  64% {
      color: #fff;
    text-shadow: 0px 0px 20px #00aad4;  
  }
  100% {
      color: #fff;
    text-shadow: 0px 0px 20px #00aad4;  
  }
}

@-webkit-keyframes blinkH1After {
  0%   {
      color: #00aad4;
  }
  19%   {
      color: #00aad4;
  }
  20% {
      color: transparent; 
  }
  21% {
      color: #00aad4;  
  }
  60% {
      color: #00aad4;  
  }
  61% {
      color: transparent; 
  }
  62% {
      color: #00aad4;  
  }
  63% {
      color: transparent; 
  }
  64% {
      color: #00aad4;  
  }
  100% {
      color: #00aad4;  
  }
}

@-webkit-keyframes blinkH1Before {
  0%   {
      background: #00aad4;
  }
  19%   {
      background: #00aad4;
  }
  20% {
      background: transparent; 
  }
  21% {
      background: #00aad4;  
  }
  60% {
      background: #00aad4;  
  }
  61% {
      background: transparent; 
  }
  62% {
      background: #00aad4;  
  }
  63% {
      background: transparent; 
  }
  64% {
      background: #00aad4;  
  }
  100% {
      background: #00aad4;  
  }
}

h3{
font-family: 'Pacifico', cursive;
font-weight: 100;
margin: 0px;
position: absolute;
  top: 15% !important;
  left: 45%;
  transform: translate(-50% ,-50%);
  color: #fff;
  font-size: 30px;
  text-shadow: 0px 0px 20px #00aad4;
  -webkit-animation: blinkH1 5s  infinite;
  animation: blinkH1 5s  infinite;
}

h3:after{
content: attr(data-text);
position: absolute;
top: 0;
left: 0;
color: #00aad4;
z-index: -1;
filter: blur(15px);
-webkit-animation: blinkH1After 5s  infinite;
animation: blinkH1After 5s  infinite;
display:none;
}

h3:before{
  content: "";
  position: absolute;
  top: 0;
  left: 25%;
  width: 50%;
  height: 100%;
  background: #00aad4;
  z-index: -2;
  opacity: 0.7;
  filter: blur(25px);
  -webkit-animation: blinkH1Before 5s  infinite;
  animation: blinkH1Before 5s  infinite;
}

h3.txt-by{
z-index: 2;
font-size: 30px;
top: calc(50% - 55px);
}

h3.txt-ne{
top: calc(50% + 5px);
text-align: center;
  line-height: 1;
  margin-top: 15px;
}

.searchContainer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.box {
  width: 45%;
  height: 200px;
  background-color: #f2f2f2;
  border: 1px solid #ccc;
  box-sizing: border-box;
}