/* Reset default margin and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI Light', 'Segoe UI', Arial, sans-serif;
    font-weight: 300; /* Light weight */
    line-height: 1.6;
    background-color: #1b2737;
    color: #fff;
}

header {
    font-weight: 300; /* Light weight */
    background-color: #1b2737;
    color: #fff;
    padding-left: 5%;
    text-align: left;
}

.header-content {
    font-weight: 300; /* Light weight */
    max-width: 800px;
    margin: 0 auto;
}


header h1 {
    font-weight: 300; /* Light weight */
    font-size: 2.5rem;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2rem;
}

main {
    max-width: 800px;
    margin: 3px auto;
    padding: 0 20px;
}

.game-preview {
    display: flex;
    margin-bottom: 30px;
}

.preview-image {
    flex: 2;
    margin-right: 20px;
    position: relative;
}

.preview-image img {
    width: 100%;
    border-radius: 5px;
    cursor: pointer;
}

.preview-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.preview-info img {
    
    margin-bottom: 10px;
}

.preview-info p {
    font-size: 1.1rem;
    text-align: center;
}

.screenshots {
    margin-bottom: 30px;
}

.screenshots h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.screenshot-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 10px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    cursor: pointer;
}

.section-body {
    margin-top: 30px;
}

.section-body h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.section-body p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

footer {
    background-color: #34495e;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}

.small-header {
    color: #2d88bb;
    font-weight: 600;
    
    margin-bottom: 3px;
    padding-bottom: 3px;
    
}