@import url("https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@600&display=swap");
html {
  font-family: "JetBrains Mono", monospace;
  height: 100%;
  text-align: center;
}

h3 {
  color: #88c0d0;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  background-color: #121212;
  color: #eceff4;
  overflow: hidden;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-width: 1px;
  border-style: solid;
  border-radius: 10px;
  border-color: #2e3440;
  background-color: #181818;
}

.centered {
  width: 100%;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 10px;
  align-items: center;
}

.clockContainer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  max-width: 600px;
  width: 100%;
  margin: 10px auto;
}

.divider {
  width: 1px;
  height: 100%;
  background-color: #eceff4;
  grid-column: 2;
  margin: 1rem;
}

.time {
  align-items: center;
  justify-content: center;
  grid-column: 1;
  gap: 1rem;
}

.weather {
  grid-column: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.bookmarks {
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  background-color: #181818;
}

ul {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 15px;
  min-height: 150px;
  min-width: 150px;
  flex: 1 1 150px;
}

li {
  list-style: none;
  margin: 5px;
  transition: transform 0.3s;
}

li:hover {
  transform: scale(1.1);
}

a {
  color: #eceff4;
  text-decoration: none;
}

a:hover {
  color: #88c0d0;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input:focus {
  outline: none;
}

input:hover {
  transform: scale(1.1);
}

.searchContainer {
  display: flex;
  width: 80%;
  justify-content: center;
  margin: 15px;
}

.searchBox {
  outline: none;
  border-style: solid;
  border-color: #2e3440;
  border-radius: 10px;
  background-color: #181818;
  color: #eceff4;
  padding: 5px 10px;
  width: 100%;
  height: 100%;
  transition: transform 0.3s;
}

.settings {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 1000;
}

.settingsButton {
  background: none;
  background-color: transparent;
  border: none;
  color: #eceff4;
  cursor: pointer;
  font-size: 32px;
}

.saveSettings {
  background-color: #181818;
  color: #eceff4;
  padding: 5px;
  border-width: 1px;
  border-style: solid;
  border-radius: 10px;
  border-color: #2e3440;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.settingsMenu {
  position: absolute;
  top: 50px;
  right: 10px;
  border-width: 1px;
  border-style: solid;
  border-radius: 10px;
  border-color: #2e3440;
  background-color: #181818;
  color: #eceff4;
  padding: 15px;
  display: none;
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.settingsMenu input {
  outline: none;
  border-style: solid;
  border-color: #2e3440;
  border-radius: 10px;
  background-color: #181818;
  color: #eceff4;
  padding: 5px 10px;
  margin: 10px 10px;
}

select {
  background-color: #181818;
  color: #eceff4;
  border: 1px solid #2e3440;
  border-radius: 10px;
  padding: 5px 10px;
  margin: 10px 10px;
  outline: none;
  appearance: none;
  -moz-appearance: none;
}

option {
  background-color: #181818;
  color: #eceff4;
}

/*# sourceMappingURL=styles.css.map */
