body {
    margin: 0;
    padding: 0;
    background-color: #1a1a1a; 
    color: #ffffff; 
    font-family: 'Garamond Pro', serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.center-content {
    text-align: center;
}

.center-gif {
    max-width: 50%; 
    height: auto;
    margin-bottom: 15px; 
}

.button-container {
    display: flex;
    justify-content: center;
    gap: 20px; 
}

.button {
    background-color: #1a1a1a;
    border: 1.5px solid #ffffff;
    color: white; 
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 40px; 
    font-size: 1rem; 
    transition: background-color 0.3s, color 0.3s;
}

.button:hover {
    background-color: #ffffff; 
    color: #1a1a1a;
}

.hamburger-icon {
    position: absolute; 
    top: 20px; 
    right: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 25px; 
    cursor: pointer; 
}

.bar {
    background-color: #ffffff; 
    height: 1.5px; 
    width: 100%; 
    border-radius: 2px; 
    transition: all 0.3s ease; 
}

.hamburger-icon:hover .bar {
    background-color: #f39c12; 
}

.arrow {
    position: fixed;
    top: 20px; 
    left: 20px; 
    font-size: 30px; 
    cursor: pointer; 
    z-index: 10; 
    color: white;
    text-decoration: none; 
    transition: text-decoration 0.3s; 
}

.arrow:hover {
    text-decoration: underline; 
}


