@font-face {
  font-family: 'Font1';
  src: url('fonts/BirthdayRegular.ttf');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Font2';
  src: url('fonts/Huglove.ttf');
  font-weight: normal;
  font-style: normal;
}


/* General Body & Font Styling */
body {
    margin: 0;
    font-family: Font1, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #333;
    overflow-y:auto;
    background-image: url('backgrounds/background2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: 100vh;
}


body.page {
    background-image: url('backgrounds/page2.jpg');
}


.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100vh;
    padding: 20px;
    box-sizing: border-box;
    padding-bottom: 80;
}


h1 {
    font-size: clamp(2.5rem, 6vw, 4rem); /* Responsive font size */
    font-family: Font2;
    font-weight: bold;
    color: #422400;
    margin-bottom: 1rem;
}

/* Paragraph Styling */
p {
    font-size: clamp(1rem, 4vw, 1.5rem);
    max-width: 600px;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 2.5rem;
}

p.page-para{
    margin-top:300px;
}


/* Button Styling */
.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #653a02);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.1s ease-in-out, box-shadow 0.1s ease-in-out;
    animation: pulse 1.3s infinite; /* Pulsing animation */
}   


/* Button hover effect (pop) */
.cta-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    animation-play-state: paused; /* Pause the pulse on hover for a clean pop */
}


/* Keyframes for the pulsing animation */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}


/* Image styling for the second page */
.meme{
    position: fixed;
    
    width: 100%;
    padding-top: 15px;
}

.meme img{
    width:200px;
    height: auto;
    border-radius: 15px;
}

/*GIF positioning and sizing*/
.gif{
    position: fixed;
    bottom: 50px;
    left:1050px;
    width: 100%;
} 

.gif img {
    width: 250px;
    height: auto;
}