body {
  font-family: "Tilt Warp", sans-serif;
  margin: 0;
  min-height: 100vh;
  background-image: url("images/made-by-me/homebackground.png");
  background-repeat: no-repeat;
}

.header {
  display: flex;
  align-items: baseline;
  justify-content: space-around;
  flex-wrap: wrap; /* Helps wrap items on small screens */
  padding: 1rem;
}

.tph {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.tph img{
   width: 40%;
}

.guestbook {
  margin-top: 0px;
}

.video {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  padding-top: 1.883%;
  height: 0;
}

.video iframe {
  position: absolute;
  top: 4%;
  left: 70%;
  width: 30%;
  height: 30%;
  transform: translateX(-50%);
}

h1 {
  color: whitesmoke;
  font-size: 500%;
  margin: 0%;
}

.links {
  display: flex;
  gap: 50px; 
}


.links ul {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

a {
  color: white;
  text-decoration: none;
}

a:hover {
  color: #FFB74D;
}

a:active {
  color: #2D3A4D;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  h1 {
    font-size: 250%;
    text-align: center;
  }

  .header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .links ul {
    flex-direction: column;
    gap: 0.5rem;
  }

  .video iframe {
    width: 90%;
    height: 90%;
  }
}


