* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Gaegu", serif;
}


body {
  font-family: "Gaegu", serif;
  font-weight: 300;
  font-style: normal;
  margin: 0;
  background-color: #ffffe8;
  color: #7f6000;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
}

header {
  background-color: #ffffe8;
  padding: 1rem;
}

nav a {
  color: #201c24;
  margin: 0 15px;
  text-decoration: none;
}

nav a:hover {
  color: #7f6000;
}

.intro {
  margin: 40px auto 0px;
  padding: 0px;
}

p {
  width: 40ch;
  text-align: center;
  margin: 0 auto; 
  line-height: 1.5;
}

h1 {
   margin-top: 0px;
}

.graphic {
  width: 200px;
  height: 200px;
  margin: 20px auto 0px;
  background-image: url('static/assets/frontpage.png'); 
  background-size: cover;
}

.social-icons img {
  width: 30px;
  margin: 10px;
  transition: transform 0.3s;
}

.img-shields img {
  height: 20px;
  margin: 10px;
  transition: transform 0.3s;
}

.img-shields img:hover {
  transform: scale(1.2);
}


.social-icons img:hover {
  transform: scale(1.2);
}

.tooltip {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.tooltip-text {
  visibility: hidden;
  width: 180px;
  background-color: #7f6000;
  color: #ede8d0;
  text-align: center;
  border-radius: 4px;
  padding: 5px 10px;
  position: absolute;
  z-index: 1;
  top: 125%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.15s;
}

.tooltip:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

.url-bar-container {
  background: #ffffe8;
  border-radius: 8px;
  padding: 0 5px;
  width: 100%;
  max-width: 500px;
  align-items: center;
  height: 20px;
  display: flex;
  justify-content: center;
}

.url-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  border: none;
  border-radius: 8px;
  overflow: hidden;
  height: 20px;
  width: 100%;
}

input[type="text"] {
  flex-grow: 1;
  padding: 0 16px;
  border: none;
  font-size: 16px;
  outline: none;
  color: #7f6000;
  background-color: #ffffe8;
  height: 40px;
}

input[type="text"]::placeholder {
  color: #bbb;
}

button {
  background-color: #7f6000;
  color: white;
  border: none;
  padding: 0 5px;
  height: 20px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 8px;
  transition: background-color 0.2s ease;
}

button:hover {
  background-color: #8f7010;
}

button:active {
  background-color: #8f7010;
}
