@font-face {
  font-family: 'YeastyFlavors';
  src: url('../fonts/YeastyFlavorsRegular-yweyd.ttf') format('truetype');
}

body, html {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
  width: 100%;
}

a,p {
  font-family: 'YeastyFlavors', sans-serif;
  font-size: 50px;
  color: #FF9600;
  text-shadow: 2px 2px 8px #000000;
  text-decoration: none;
  transition: color 0.3s ease, text-shadow 0.3s ease;
  margin: 0%;
}
p{
 color: #ff7300fa; 
}
a:hover,
a:visited:hover {
  font-family: 'YeastyFlavors', sans-serif;
  color: #FF9600;
  text-shadow: 4px 4px 20px rgba(0, 0, 0, 0.6);
}

a:visited {
  color: #FF9600;
  text-shadow: 4px 4px 20px rgba(0, 0, 0, 0.6);
  text-decoration: none;
}

.menu-container,.about-container {
  position: absolute;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.title {
  color: #FFC700;
  text-shadow: 2px 4px 0px rgba(0, 0, 0, 0.7);
  position: absolute;
  top: 15%;
  left: 50%;
  font-size: 150px;
  font-family: 'YeastyFlavors', sans-serif;
  transform: translateX(-50%);
  text-align: center;
  width: 100%;
}

.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  background-size: cover;
}

.background img {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
}

@media (max-width: 768px) { 
  a {
    font-size: 80px;
  }

  .title {
    font-size: 110px;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
  }

  .menu-container {
    gap: 1.5%;
    padding: 0 10px;
  }
}

@media (max-width: 480px) {
  a {
    font-size: 38px;
  }

  .title {
    font-size: 70px;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
  }

  .menu-container {
    gap: 1%;
    padding: 0 5px;
  }
}
