h1 {
    font-size: 24px;
    color: white;
    letter-spacing: 3px;
    text-align: center;
    font-family: "Savoye LET", "Comic Sans MS", cursive;
    padding-top: 60px;
}

@media (max-width: 600px) {
  h1 {
    font-size: 24px;
  }

  p {
    font-size: 18px;
  }

  .introduction {
    font-size: 10px;
  }

  .aboutme {
    font-size: 18px;
  }
}

body {
  background-image: url("image-background.png");
  background-size: cover;
}

.overlay {
  position: fixed;
  z-index: 1;
  height: 100%;
  width: 60%;
  background-color: #FFF3B8;
  opacity: 0.6;
  left: 50%;
  transform: translateX(-50%);
}

.content {
  position: relative;
  z-index: 2;
}

p {
    font-size: 24px;
    color: black;
    font-weight: bold;
    text-align: center;
}

.introduction {
    font-size: 12px;
    color:black;
    font-weight: bold;
    text-align: center;
}

.aboutme {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    color:black;
    padding-top: 50px;
}

ul {
    font-size: 18px;
    font-weight: bold;
    padding-top: 40px;
    text-align: center;
    list-style: none;
}

.aboutwork {
  width: fit-content;
  display: block;
  margin: 0 auto;
  transition: transform 0.5s;
  cursor: default;
}

.aboutwork:hover {
  transform: scale(1.2);
}

.abouthobby {
  width: fit-content;
  display: block;
  margin: 0 auto;
  transition: transform 0.5s;
  cursor: default;
}

.abouthobby:hover {
  transform: scale(1.2);
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
}

.modal-content {
  width: 500px;
  max-width: 80%;
  margin: 100px auto;
  background: white;
  padding: 30px;
  border-radius: 10px;
}

.modal-content p {
  font-size: 18px;
  color: black;
  text-align: center;
}

.close {
  float: right;
  cursor: pointer;
}
