@font-face {
  font-family: clock;
  src: url("../assets/fonts/digital-7/digital-7.ttf");
}
@font-face {
  font-family: shorelines;
  src: url("../assets/fonts/shorelines_script/shorelines.otf");
}
@font-face {
  font-family: milkyMatcha;
  src: url("../assets/fonts/milky_matcha/MilkyMatcha.otf");
}
@font-face {
  font-family: papernotes;
  src: url("../assets/fonts/papernotes/Papernotes.otf");
}
* {
  margin: 0;
}

::-moz-selection {
  color: #1e454e;
  background-color: rgba(30, 69, 78, 0.5058823529);
}

::selection {
  color: #1e454e;
  background-color: rgba(30, 69, 78, 0.5058823529);
}

body {
  font-family: papernotes;
  color: white;
  background-color: #7c95b6;
  background-image: url("../assets/images/water.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  height: 100vh;
  cursor: url("../assets/images/shell-cursor.png"), auto;
}

header {
  font-family: milkyMatcha;
  text-align: center;
  text-shadow: 0px 0px 10px #1e454e;
  height: 60px;
  font-size: 3em;
  padding: 20px;
}

nav {
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0.3);
  text-shadow: 0px 0px 10px rgba(30, 69, 78, 0.8235294118);
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: row;
  gap: 30px;
}
nav a {
  font-size: 30px;
  transition: color 0.5s ease;
  color: white;
  text-decoration: none;
}
nav a:hover {
  color: #1e454e;
}

main {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 10px;
  font-size: 20px;
  letter-spacing: 1px;
  line-height: 25px;
  text-shadow: 0px 0px 10px rgba(30, 69, 78, 0.8235294118);
}
main aside, main article {
  max-height: calc(100vh - 270px);
  min-height: 100%;
  box-sizing: border-box;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.3);
  overflow-y: auto;
  overflow-x: hidden;
}
main aside::-webkit-scrollbar, main article::-webkit-scrollbar {
  width: 10px;
  height: 0px;
}
main aside::-webkit-scrollbar-thumb, main article::-webkit-scrollbar-thumb {
  background-color: rgba(30, 69, 78, 0.8235294118);
  border-radius: 999px;
}
main aside h2, main article h2 {
  text-shadow: 0px 0px 10px #577c84;
  text-decoration: underline;
  margin-bottom: 10px;
}
main aside h3, main article h3 {
  text-shadow: 0px 0px 10px #577c84;
}
main aside p, main article p {
  margin: 10px 0px;
}
main aside hr, main article hr {
  height: 5px;
  border: none;
  background-color: white;
  width: 100%;
  justify-self: center;
  border-radius: 99px;
}
main aside {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  min-width: 340px;
  max-width: 340px;
}
main aside #clock-container {
  width: 300px;
  color: #52aa04;
  font-family: clock;
  font-size: 50px;
  position: relative;
}
main aside #clock-container #digital-clock {
  width: 300px;
}
main aside #clock-container #am-pm {
  font-size: 25px;
  position: absolute;
  left: 60px;
}
main aside #clock-container #clock {
  position: absolute;
  left: 115px;
  top: 30px;
}
main aside #date {
  font-size: 40px;
  line-height: 150%;
}
main aside ul {
  list-style: none;
  padding: 0px;
}
main aside .section {
  text-align: center;
}
main aside hr {
  margin: 5px 0px;
}
main article {
  text-align: center;
}
main article hr {
  margin: 30px 0px;
}

footer {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  padding: 20px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 20px;
  box-sizing: border-box;
  text-shadow: 0px 0px 10px rgba(30, 69, 78, 0.8235294118);
}

#fauna {
  position: absolute;
  bottom: 50px;
  left: 290px;
  height: 200px;
}/*# sourceMappingURL=styles.css.map */