/* Global styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    color: #333;
}

/* Background styling */
.background {
    background-image: url('img/mainTitleWeb.png');
    background-size: cover;
    background-position: center;
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
}

/* Logo overlay styling */
.logo-overlay {
    position:relative;
    top:35%;
    left: 10%;
    transform: translateX(-50%);
    width: 25%;  /* Adjust size of logo */
    z-index: 10;  /* Ensure it appears above other elements */
}

.content h1 {
    font-size: 4em;
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.content p {
    font-size: 1.5em;
    color: #f0f0f0;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}



/* Main copy section */
.mainCopy {
    padding: 40px;
    background: #1d1f21;
    color: #f7f7f7;
    text-align: center;
    margin: 0;
}

.mainCopy h3 {
    font-size: 2.5em;
    margin-bottom: 20px;
    letter-spacing: 2px;
    color: #e91e63;
    text-transform: uppercase;
}

.mainCopy h5 {
    font-size: 1.5em;
    color: #ff9800;
    margin-bottom: 10px;
}

.mainCopy p {
    font-size: 1.2em;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Game Title Section */
.game-title-section {
    padding: 10px 20px;
    text-align: center;
    background-color: #1d1f21;
    color: white;
}

.game-title-section h2 {
    font-size: 3.5em;
    margin-bottom: 30px;
    color: #ff9800;
}

/* Footer styling */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 15px 10px;
    position: relative;
    bottom: 0;
    width: 100%;
}

footer a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
}

footer a:hover {
    text-decoration: underline;
}

