body {
  background-color: #00c2bc;
  margin: 0;
  font-family: "Racing Sans One", serif;
  font-weight: 400;
  font-style: normal;
  color: black;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 100vh;
}

header {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  min-height: 50px;
  margin-bottom: 20px;
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  flex-direction: column;
}

footer {
  min-height: 160px;
  width: 100%;
  background-color: #ff7347;
  bottom: 0px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-top: 1px solid #f3ec2f;
  -webkit-text-stroke: 0.5px white;
  margin-top: 30px;
}

nav {
  background-color: #ff7347;
  width: 100%;
  display: flex;
  height: 60px;
  align-items: center;
  border-top: 1px solid #f3ec2f;
  border-bottom: 1px solid #f3ec2f;
}

ul {
  display: flex;
  justify-content: space-around;
  width: 40%;
  font-size: 30px;
  list-style-type: none;
}

h1 {
  font-size: 72px;
  -webkit-text-stroke: 0.5px white;
  margin: 20px 0px;
}

h2 {
  -webkit-text-stroke: 0.5px white;
  font-size: 2em;
}

.nav-link {
  text-decoration: none;
  color: #000;
  -webkit-text-stroke: 2px white;
  padding: 5px 15px 5px 15px;
}

.nav-link:hover {
  background-color: #00c2bc;
  border-radius: 15px;
}

#header-logo {
  align-items: center;
  margin: 20px 0px 20px 0px;
}

#sign-in {
  justify-content: flex-end;
  width: 60%;
  margin-right: 5%;
}

#about-me {
  width: 80%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 800px;
  margin: 0px auto 50px auto;
  padding: 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#hero-picture {
  width: 80%;
}

.modal {
  display: none; /* Make sure it's hidden by default */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: white;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
}

#close-modal {
  margin-top: 10px;
  padding: 5px 15px;
  background-color: #ff7347;
  color: white;
  border: none;
  cursor: pointer;
}

#close-modal:hover {
  background-color: #ff5722;
}

#confirm,
#cancel {
  padding: 8px 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1em;
}

#confirm {
  background-color: #ff5722;
  color: white;
  font: inherit;
  -webkit-text-stroke: #000 0.5px;
}

#cancel {
  background-color: #ccc;
  color: black;
  font: inherit;
  -webkit-text-stroke: white 0.5px;
}

@media (max-width: 768px) {
  #hero-header {
    font-size: 2em;
  }
  #header-logo {
    width: 350px;
  }
  ul {
    width: 60%;
  }
}
