/* Reset some default browser styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Orbitron', sans-serif;
    background-color: #000000;
    position: relative;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh; /* Set the minimum height to 100% of the viewport height */
    padding: 100px 20px 20px; /* Add padding to the top */
}

body .page-views {
    position: absolute;
    top: 10px;
    left: 10px;
    color: #00ED33;
    font-size: 1rem;
    z-index: 10;
}

body::before {
    content: "";
    background-image: url('background.gif');
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-size: cover;
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Prevent the image from repeating */
}


.header {
    margin-bottom: 20px;
}

.header-title {
    font-size: 2rem;
    text-align: center;
    text-shadow: -1px 0 white, 0 1px white, 1px 0 white, 0 -1px white;
}

.game-over {
    font-size: 2rem;
    text-align: center;
    text-shadow: -1px 0 white, 0 1px white, 1px 0 white, 0 -1px white;
}


.profile-picture {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
    border: 1px solid white;
}

.logo-picture {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
    border: 1px solid white;
}


.bio {
    margin-bottom: 10px;
    text-align: center;
}

.bio-text {
    font-size: 1.2rem;
    color:#Fff
}

.games {
    margin-bottom: 10px;
    text-align: center;
}

.game-text {
    font-size: 1.2rem;
    color:#Fff
}

/* New media query */
@media (min-width: 1024px) {
    .bio-text-container {
        width: 40%; /* Set the width to 40% on desktop */
        margin-left: auto; /* Center the text container horizontally */
        margin-right: auto; /* Center the text container horizontally */
    }
}

/* New media query */
@media (min-width: 1024px) {
    .game-text-container {
        width: 100%; /* Set the width to 40% on desktop */
        margin-left: auto; /* Center the text container horizontally */
        margin-right: auto; /* Center the text container horizontally */
    }
}


.contact {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px; /* Add some margin above the contact buttons */
    margin-bottom: 60px;
}

.contact-link {
    display: inline-block;
    background-color: #007BFF;
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    text-align: center;
}

.contact-link {
    display: inline-block;
    font-size: 1.2rem;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    text-align: center;
    text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}

@media (min-width: 1024px) {
    .contact-link {
        width: 42%; /* Set the width to 42% for desktop */
        margin-left: auto; /* Center the buttons horizontally */
        margin-right: auto; /* Center the buttons horizontally */
    }
}



.contact-link-1 {
    background-color: #008A1E;
}

.contact-link-2 {
    background-color: #008A1E;
}

.contact-link-3 {
    background-color: #008A1E;
}

.contact-link-1:hover {
    background-color: #00ED33;
}

.contact-link-2:hover {
    background-color: #036bfc;
}

.contact-link-3:hover {
    background-color: #F96854;
}

.location {
    color: #00ED33;
    font-size: 1.2rem;
    text-align: center;
    margin-top: 20px;
}




/* Make the design mobile-responsive */
@media (max-width: 768px) {
    .header-title {
        font-size: 1.5rem;
    }

    .bio-text {
        font-size: 1rem;
    }

    .contact-link {
        font-size: 1rem;
    }
}

footer {
    text-align: center;
    margin-top: 20px;
}

footer p {
    font-size: 0.8rem;
    color: #fff;
}
