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

body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1;
    color: #333;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
    background-color: #ffffff;
}

h1, h2 {
    font-weight: 700;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

.box-link {
    text-decoration: none;
    color: inherit;
}

.box-link:hover .box,
.box-link:focus .box {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
}

.box-link:hover,
.box-link:focus {
    cursor: pointer;
}

.linkedin-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}

.linkedin-icon a {
    color: #0077b5;
    text-decoration: none;
}

.linkedin-icon a:hover,
.linkedin-icon a:focus {
    color: #005583;
}

.container {
    width: 100%;
    margin: 1rem auto;
    padding: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    align-items: center;
}

.navbar {
    width: 100%;
    height: 50px;
    background-color: rgba(51, 51, 51, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute; 
    top: 0; 
    z-index: 1;
}

.navbar ul {
    list-style-type: none;
}

.navbar li {
    display: inline;
    margin-left: 0.75rem;
    margin-right: 0.75rem;
}

.navbar a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
}

.navbar a:hover {
    color: #ccc;
}

.header-banner {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.header-banner h1 {
    color: #fff;
    font-size: 4.5rem;
}

.header-banner h2 {
    color: #fff;
    font-size: 1.5rem;
    margin-top: 0.5rem;
}

.header-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

.page-title {
    color: #fff;
    font-size: 4.5rem;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 0.5rem 0.5rem;
    border-radius: 5px;
}

.contact-form-container {
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    max-width: 1000px;
    margin: 2rem auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    max-width: 800px;
    margin: 0 auto;
    padding: 1rem;
}

.contact-form label {
    margin: 0.5rem 0;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    resize: vertical;
}

.contact-form button {
    padding: 0.5rem 1rem;
    background-color: #3498db;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: #2980b9;
}

.game-box {
    background-color: #fff;
    padding: 1rem;
    margin: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    text-align: center;
    border-radius: 5px;
    width: 45%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.game-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    width: 100%;
    height: 100%;
}

.game-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.game-image img {
    width: 150px;
    height: 150px;
    margin: 0.5rem;
    object-fit: cover;
    border-radius: 8px;
}

.game-info h2 {
    margin-bottom: 2rem;
    font-size: 2rem;
}


.box {
    background-color: rgba(248, 248, 248, 0.8);
    width: 100%;
    max-width: 500px;
    min-width: 260px;
    margin-bottom: 1rem;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    padding: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    text-align: center;
}


.box h2 {
    font-size: 2rem;
}

.box p {
    font-size: 1.1rem;
}

.footer {
    width: 100%;
    height: 50px;
    background-color: #4a4a4a;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer p {
    color: #fff;
    font-size: smaller;
}

@media screen and (max-width: 960px) {
    .box {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: center;
    }

    .box {
        width: calc(50% - 1rem);
    }

    .game-image img {
        width: 75px;
        height: 75px;
    }
}
