html, body {
height: 100%;
font-family: Georgia, 'Times New Roman', Times, serif
}

body {
  padding: px;
  background-color: black;
  color: rgb(81, 200, 240);
}

.dark-mode {
  background-color: rgb(81, 200, 240);
  color: black;
}

.button {
  background-color: #0468aa;
  border: none;
  color: black;
  padding: 6px 16px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
  margin: 4px 2px;
  cursor: pointer;
  transition-duration: 0.4s;
  border-radius: 6px;
}

.button {
    box-shadow: 0 4px 8px 0 blue;
}


.button:hover {
    box-shadow: 0 8px 16px 0 rgba(15, 120, 146, 0.6);
}

.button:active {
  box-shadow: 0 2px #021752;
  transform: translateY(3px);
}

h2 {
    font-size: 24px;

}

h3 {
    font-size: 42px;
    filter: ;

}

h4 {
    font-size: 16px;
}

p1 {
    font-size: 16px;
}

p2 {
    font-size: 12pz;
}

header {

}

nav.info {
  text-align: center;
}

ul.myUL {
  display: inline-block;
  text-align: center;
}

main {

}

.carousel-items {
  max-width: 75%;
  position: relative;
  margin: auto;
}

.text {
  color: tan;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 75%;
  text-align: center;
}

.numbertext {
  color: tan;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

.dot {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: lightblue;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active {
  background-color: #eb185e;
}

.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

label {display: block;}
 
input[type=text] {
  width: 100%;
  padding: 24px;
  margin: px 20;
  box-sizing: border-box;
}

aside {

}

footer {

}

footer img {
filter: invert();
opacity: 0.6;
animation: twinkle 2s ease-in-out infinite;
will-change: filter, opacity;
}

@keyframes twinkle {
    0% { 
    filter: invert(100%) brightness (0.9); opacity: 0.9; }
    20% {
    filter: invert(100%) brightness (0.9); opacity: 0.5; }
    40% {
    filter: invert(100%) brightness (0.9); opacity: 0.9; }
    60% {
    filter: invert(100%) brightness (0.9); opacity: 0.3; }
    80% {
    filter: invert(100%) brightness (0.9); opacity: 0.6; }
    100% {
    filter: invert(100%) brightness (0.9); opacity: 0.9; }
}

@media (prefers-reduced-motion: reduce) {
    footer img {
        animation: none;
    }
}

a {
    font-family: 'Times New Roman', Times, serif;
    font-size: 18px;
}

a:hover {
color: rgb(81, 200, 240);
}

a:after {
    color: #eb185e;
}

.Section {

}