* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    background-image: url('https://i.pinimg.com/originals/06/8a/6c/068a6c22962c1e162c9f6f45c9f204a3.gif'); /* Use a high-resolution image */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100%;
    font-family: 'Trade Winds', 'Yuji Boku', sans-serif;
}

.container {
    background: rgba(0, 0, 0, 0.5);
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 20px;
}

.content {
    background: rgba(0, 0, 0, 0.5);
    background-size: cover;
    background-image: url('https://i.pinimg.com/originals/06/8a/6c/068a6c22962c1e162c9f6f45c9f204a3.gif'); /* Use a high-resolution image */
    background-repeat: no-repeat;
    background-position: center;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

h1 {
    font-size: 3em;
    margin-bottom: 10px;
}

h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    background-image: url('https://i.pinimg.com/originals/06/8a/6c/068a6c22962c1e162c9f6f45c9f204a3.gif');
    background: #000000;
    background: rgba(0, 0, 0, 0.5);
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    color: white;
    font-size: 1em;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #666464;
}

.footer {
    background-color: #000000;
    color: #fff;
    text-align: center;
    padding: 20px;
    position: relative;
    bottom: 0;
    width: 100%;
}

.footer a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
}