@font-face {
  font-family: bangers;
  src: url(Bangers-Regular.ttf);
}
.header {
     display: absolute;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
}

.logo {
   position: absolute;
    top: 10px;  /* Keeps it at the top */
    left: 20px; /* Adjust if needed */
    width: 500px;
}
.header-title {
    position: absolute;
    top: 50px; /* Adjust for fine-tuning */
    left: 50%;
    transform: translateX(-50%);
}
.text-container {
    display: flex;
    flex-direction: column; /* Stacks title and subtitle vertically */
    align-items: center; /* Centers the text under "GRASPOP" */
}

.title {
    position: absolute;
    top: 120px; /* Move it up, adjust as needed */
    left: 50%;
    transform: translateX(-50%);
    font-size: 130px;
    color: #eefffd;
    ; /* Ensures text stays aligned with image */
}
.subtitle {
    font-size: 30px; /* Adjust size if needed */
    font-family: monospace;
    color: #eefffd;
    margin: 5px 0 0 0; /* Small space under the title */
}
body{
    background-image:url(black-gothic-floral-fondos-de-pantalla-dtgf3ifixdiyimce.jpg);
 min-height: 300vh; /* Makes sure the page fills the whole screen */
}
img{
    width:500px;
}
.content {
    display: flex;  
    align-items: center; /* Aligns image and text vertically */
    gap: 20px; /* Adds space between image and text */
    max-width: 80%; /* Keeps it from stretching too wide */
    margin: 40px auto; /* Centers it on the page */
}

.content-image {
    width: 40%; /* Makes image take 40% of the container */
    border-radius: 10px; /* Rounds the edges */
}

.content-text {
    width: 60%; /* Makes text box take 60% of the container */
    background-color: rgba(0, 0, 0, 0.7); /* Dark semi-transparent background */
    padding: 20px;
    color: white; /* Text color */
    border-radius: 10px;
}
.navbar {
    background-color: black; /* Navbar background color */
    padding: 15px 0; /* Add space inside the navbar */
    text-align: center; /* Centers the menu items */
}

.navbar ul {
    list-style: none; /* Removes bullet points */
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center; /* Centers the items */
    gap: 30px; /* Space between options */
}

.navbar li {
    display: inline;
}

.navbar a {
    text-decoration: none; /* Removes underline */
    color: white; /* Text color */
    font-size: 20px;
    font-weight: bold;
    padding: 10px 15px; /* Adds spacing around text */
    transition: 0.3s; /* Smooth hover effect */
}

.navbar a:hover {
    color: #4d39a4; /* Changes color on hover */
}
h1{color: #eefffd;
font-family: bangers;
    margin-top: 100px;
    text-align: center;
    font-size: 10em;
}

