* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body, html {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    cursor: none;
}

header {
    background-color: #525252;
    color: #fff;
    padding: 10px 0;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    max-height: 50px;
    margin-right: 15px;
}

header h1 {
    text-align: center;
    margin-bottom: 10px;
}

header nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
}

header nav ul li {
    margin: 0 15px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
}

header nav ul li a:hover {
    text-decoration: underline;
}

/* Main content styles */
main {
    flex: 1;
}

.content {
    display: flex;
    justify-content: space-between;
    padding: 20px;
}

.left-section,
.right-section {
    width: 48%;
}

.left-section h2,
.right-section h2 {
    margin-bottom: 10px;
}

.left-section ul,
.right-section ul {
    list-style: none;
}

.left-section ul li,
.right-section ul li {
    margin-bottom: 5px;
}

.left-section ul li a,
.right-section ul li a {
    text-decoration: none;
    color: #333;
}

.left-section ul li a:hover,
.right-section ul li a:hover {
    text-decoration: underline;
}

/* Footer styles */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}

#artCanvas {
    background-image: url('../images/background.jpg'); /* Replace with your actual image path */
    background-size: cover; /* This ensures that the background covers the entire canvas area */
    background-repeat: no-repeat;
}

#swampCanvas {
    background-image: url('../images/shekkky.jpg'); /* Replace with your actual image path */
    background-size: cover; /* This ensures that the background covers the entire canvas area */
    background-repeat: no-repeat;
}


#berkCanvas {
    background-image: url('../images/httyd2.webp'); /* Replace with your actual image path */
    background-size: cover; /* This ensures that the background covers the entire canvas area */
    background-repeat: no-repeat;
}

#hyruleCanvas {
    background-image: url('../images/backround.jpg'); /* Replace with your actual image path */
    background-size: cover; /* This ensures that the background covers the entire canvas area */
    background-repeat: no-repeat;
}

#epicalCanvas {
    background-color: rgb(48, 145, 255);
    background-size: cover; /* This ensures that the background covers the entire canvas area */
    background-repeat: no-repeat;
}


/* Homepage Class Styling */
body.homepage {
    background-color: pink;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}


.custom-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid #000;
    border-radius: 50%;
    position: absolute;
    pointer-events: none; /* Prevent the cursor from interfering with elements */
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease-out;
    z-index: 1000;
}

.custom-cursor.active {
    transform: scale(2); /* Enlarge the cursor on interaction */
    background-color: rgba(0, 0, 0, 0.2);

body.shop {
    background-color: plum;
}



.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
    gap: 20px;
}

.image-box {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.image-box img {
    width: 100%;
    height: auto;
    display: block;
}

.image-box h2 {
    font-size: 1.5em;
    margin: 15px;
}

.image-box p {
    font-size: 1em;
    margin: 0 15px 15px;
    color: #666;

}