* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Source Sans Pro', sans-serif;
}

body {
    background-color: #f4f4f4;
    padding-top: 60px; /* space for fixed header */
    margin: 0;
    scroll-behavior: smooth; /* smooth scrolling */
    transition: background-color 0.3s ease;

}

header {
    width: 100%;
    height: 60px;
    background: #0f0a19;
    color: white;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    z-index: 1000;
}

header .logo {
    margin-left: 20px;
    transition: transform 0.3s ease;

}

header .logo img {
    height: 50px; /* Adjust the height as needed */
}

header .logo:hover {
    transform: scale(1.05); /* Scale up effect on hover */
}

header nav ul {
    list-style: none;
    display: flex;
    margin-right: 20px;
}

header nav ul li {
    margin: 0 10px;
    position: relative;
}

header nav ul li.separator {
    width: 1px;
    height: 20px;
    background-color: white;
    margin-inline: 10px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

header nav ul li a:hover {
    color: #ddd;
}

.shortcut-image{
    max-height: 21px;
    transition: transform 0.3s ease;

}

.shortcut-image:hover {
    transform: scale(1.1);
}

.container {
    padding: 20px;
    box-sizing: border-box;
}

.full-screen-section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    background: white;
    padding: 40px;
    margin-bottom: 40px; /* Adjust spacing between sections */
    box-sizing: border-box;
    box-shadow: 0 8px 8px rgba(0, 0, 0, 0.15);
}

.full-screen-section h2 {
    margin-bottom: 20px;
    font-size: 36px;
}

.full-screen-section p {
    font-size: 18px;
    max-width: 800px;
    line-height: 1.5;
}

.game-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    text-align: left;
    /* padding: 20px; */
    border-radius: 8px;
    box-shadow: 0 8px 8px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    margin: 0 auto; /* Center the block */
    margin-bottom: 40px; /* Adjust spacing between game blocks */
    box-sizing: border-box;
    height: 500px;
    width: 90%;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.game-details {
    flex: 2; /* Takes 66% of the game-block */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centers content vertically */
    align-items: center; /* Centers content horizontally */
    width: 400px;
    height: auto;
}

.game-details p {
    margin-bottom: 10px;
}

.game-character {
    align-self: flex-end; /* Align the character image to the bottom */
    height: 100%; /* Set the height to 66% of the block */
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.game-description {
    max-width: 600px;
    margin: auto;
    text-align: center;
}

.game-description a {
    display: inline-block;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.game-logo {
    width: 400px; /* Adjust as needed */
    height: auto; /* This will maintain the aspect ratio */
    object-fit: contain; /* Ensures the aspect ratio of the image is maintained */
    transition: transform 0.3s ease;
    margin-bottom: 2%;
}

.game-logo:hover {
    transform: scale(1.05); /* Scale up effect on hover */
}


.steam-button {
    display: inline-block;
    padding: 10px 20px;
    background: #0f0a19;; /* Orange background color */
    color: white;
    text-decoration: none;
    border: 1px solid transparent; /* Initially transparent border */
    /* border-radius: 5px; */
    transition: border-color 0.3s ease, background-color 0.3s ease, color 0.3s ease;
    max-width: 200px;
    text-align: center;
    margin-top: 30px;
    text-align:center;
}

.steam-button:hover {
    background: rgba(255, 85, 0, 0.0); /* Orange with alpha background */
    border-color: black; /* Black border color on hover */
    color: black; /* Change text color on hover */
}

.itch-button {
    display: inline-block;
    padding: 10px 20px;
    background: #fa5c5c;; /* Orange background color */
    color: white;
    text-decoration: none;
    border: 1px solid transparent; /* Initially transparent border */
    /* border-radius: 5px; */
    transition: border-color 0.3s ease, background-color 0.3s ease, color 0.3s ease;
    max-width: 200px;
    text-align: center;
    margin-top: 30px;
    text-align:center;
}

.itch-button:hover {
    background: rgba(255, 85, 0, 0.0); /* Orange with alpha background */
    border-color: black; /* Black border color on hover */
    color: black; /* Change text color on hover */
}

.character-image {
    width: auto;
    height: 100%; /* Set the height to 100% of the parent */
    object-fit: contain; /* Maintain aspect ratio */
}

/* .character-image:hover {
    transform: scale(1.1);
} */

.content {
    width: 60%;
    margin: auto;
}


.team-members {
    display: flex;
    justify-content: space-around; /* Adjust spacing between team members */
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    margin-top: 20px;
}

.team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1; /* Each member takes equal space */
    margin: 0 10px;
}

.member-image {
    width: 150px;
    height: 150px;
    border-radius: 30%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid #ffffff;
    box-shadow: 0px 8px 8px rgba(0, 0, 0, 0.2); /* Add this line */
    transition: transform 0.3s ease-in-out;

}

.member-image:hover {
    transform: scale(1.1);
}

.member-info {
    text-align: center;
}

.member-info h3 {
    margin-bottom: 10px;
    font-size: 24px;
}

.member-info p {
    text-align: center;
    margin-bottom: 10px;
    line-height: 1.4;
    width: 60%;
    margin: auto;
    margin-bottom: 10px;
}

.member-info a {
    display: inline-block;
    margin-right: 10px;
    color: #333;
    text-decoration: none;
    padding: 5px 10px;
    background-color: #f0f0f0;
    border-radius: 5px;
    transition: background-color 0.3s ease;

}

.member-info a:hover {
    background-color: #e0e0e0;
}
