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

:root {
  --color-primary: #f09ea4;
  --color-primary-dark: #8d384f;
  --color-secondary: #f5ded6;
  --mouse-x: 0.5;
  --mouse-y: 1;
  --eye-height: 70;
}

html,
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
    "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
    sans-serif;
  font-size: 14pt;
  color: var(--color-primary);
}

h1 {
  font-weight: 500;
}

h3 {
  font-weight: normal;
  letter-spacing: 0.2rem;
}

footer {
  padding: 20px;
  font-size: 0.8rem;
  text-align: center;
}

.logo {
  width: 80vw;
  max-width: 380px;
  transition: transform 0.3s ease-in-out;
}

.logo:hover {
  transform: scale(1.1);
}

.main-content {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.eyes-container {
  text-align: center;
  margin-bottom: 10vh;
  height: 100%;
}

#myBtn {
  cursor: pointer;
}
/* 
Experimenting with theme preferrences
@media (prefers-color-scheme: light) {
  body {
    background: #fff;
    color: #333;
  }
}
@media (prefers-color-scheme: dark) {
  body {
    background: #333;
    color: #fff;
  }
} */

.container {
  /* background: rgb(40, 44, 52);
  background: radial-gradient(
    circle,
    rgba(238, 238, 238, 1) 0%,
    rgba(245, 222, 214, 1) 100%
  ); */
  min-height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-dark);
}

.http-error {
  margin: 20px;
  text-align: center;
}

.http-error .button {
  display: inline-block;
  margin: 30px 10px;
  padding: 15px 40px;
  border-radius: 50px;
  background-color: var(--color-primary);
  color: white;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.2rem;
  transition: background-color 0.3s ease-in-out;
}

.http-error a:hover,
.http-error a:focus {
  background-color: var(--color-primary-dark);
}

.err-no {
  color: var(--color-primary);
}

/* Medium screens */
@media only screen and (min-width: 600px) and (max-width: 1024px) {
  html,
  body {
    font-size: 12pt;
  }
}

/* Small screens */
@media only screen and (max-width: 600px) {
  html,
  body {
    font-size: 11pt;
  }
}
