    @font-face{
        font-family: 'Helvetica Round';
        src: url('/assets/fonts/helvetica-round.otf') format('opentype');
        font-weight: normal;
        font-style: normal;
    }

    html{
        height: 100%;
    }

    body {
        background-size: 256px;
        background-repeat: repeat;
        font-family: 'Helvetica Round', sans-serif;
        background-color: #000000;
        min-height: 100%;
        display: flex;
        flex-direction: column;
        margin: 0;
        padding: 0;
        cursor: url('assets/images/cursor.png'), auto;
    }

    .page-container{
        flex: 1;
    }

    .navbar img{
        width: 90px;
        height: 90px;
        margin-top: 10px;
    }

    .navbar {
        display: flex;
        justify-content: space-around;
        align-items: center;
        justify-content: left;
        background-image: url("assets/images/navbar.png");
        background-repeat: repeat-x;
        background-position-x: 80px;
        background-size: contain;
        height: 50px;
        padding: 20px;
        font-size: 1.2rem;
    }
    .navbar a {
        color: #FFF;
        text-decoration: none;
        padding: 0.5rem;
        transition: background-color 0.3s;
        transition: all 0.3s;
    }


    marquee {
        font-size: 2rem;
        font-weight: bold;
        color: #E54A75;
        margin-top: 1rem;
    }

    .content {
        max-width: 800px;
        margin: 2rem auto;
        line-height: 1.5;
        text-align: justify;
    }

    .content h1 {
        font-size: 2.5rem;
        border-bottom: 5px solid rgb(41, 23, 23);;
        padding-bottom: 0.5rem;
    }

    .content img {
        float: center;
        align-content: center;
        height: auto;
    }

    .footer {
        background-image: url("assets/images/leather.png");
        background-size: 128px;
        background-color: #6EC2F6;
        padding: 1rem;
        text-align: center;
        border-color: rgb(41, 23, 23);
        border-style: dashed;
        font-size: 0.9rem;
        color: white;
        width: 100%;
        box-sizing: border-box;
    }
    @keyframes tilt {
        0%, 100% {
            transform: rotate(-7.5deg);
        }
        50% {
            transform: rotate(7.5deg);
            transform: scale(1.5);
        }
    }

    @keyframes tilt_noscale {
        0%, 100% {
            transform: rotate(-15deg);
        }
        50% {
            transform: rotate(15deg);
        }
    }

    @keyframes spin {
        0% {
            transform: rotate(0deg);
        }
        100% {
            transform: rotate(360deg);
        }
    }

    .image-container {
        width: 200%;
        position: relative;
        left: -50%;
    }
    
    .background-image {
        display: block;
        width: 100%;
        height: auto;
    }

.button1,
.button2,
.button3 {
    position: absolute;
    background-color: transparent;
    border: none;
    color: transparent;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    cursor: pointer;
    z-index: 1;
}

/* Adjust the top, left, width, and height properties for each button to match the position and size of the button graphics in the background image */
.button1 {
    top: 15%; /* Adjust this */
    left: 12.5%; /* Adjust this */
    width: 325px; /* Adjust this */
    height: 800px; /* Adjust this */
}

.button2 {
    top: 15%; /* Adjust this */
    left: 50%; /* Adjust this */
    transform: translateX(-50%);
    width: 325px; /* Adjust this */
    height: 800px; /* Adjust this */
}

.button3 {
    top: 15%; /* Adjust this */
    right: 12.5%; /* Adjust this */
    width: 325px; /* Adjust this */
    height: 800px; /* Adjust this */
}