body {
    background-color: #ECF0F3;
    text-align: center;
    
    color: black;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}



* {
    box-sizing: border-box;
}

h1 {
    font-size: 25px;
    margin-bottom: 20px;
}

.container {
    max-width: 1004px;
    /* width: 900px; */
    margin: 0 auto;
    text-align: center;
    padding: 10px;




}

main-container {
    margin: 0 auto;
    max-width: 1100px;
}

.container1 {
    border-width: 50px;
    border: 5px solid #515152;
    border-color: #EAEDED solid;
    border-radius: 5px;
    /* background-image: url("/img/ping-pong-game.webp"); */
    background-repeat: no-repeat;
    background-position: center;
    text-align: center;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 350px;
    margin-top: 20px;
    margin-bottom: 50px;
    margin: 0 auto;
}

p {
    padding: 15px;
}

.game-section {
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 30px;


}

.row {
    text-align: center;
    max-width: 1009px;
}


.code-type {
    font-family: 'Lato', 'Lucida Grande', 'Lucida Sans Unicode', Tahoma, Sans-Serif;

}

.p1 {
    text-align: left;
    /* color: #5E5E5E; */
    color: black;

}

h1 {
    font-size: inherit;
    font-weight: inherit;
    overflow-wrap: break-word;

}

.css-1ttiqqi {
    font-size: 2.25rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    line-height: 2.5rem;
    font-weight: 800;

}


/* Responsive styles for smaller screens (e.g., mobile devices)
@media screen and (max-width: 768px) {

    .content {
        padding: 10px;
    }

    .game-section {
        text-align: center;
        display: flex;
        /* Adjust styles for game sections on smaller screens */
/* } */
/* } */






#menuToggle {
    display: none;
    cursor: pointer;
}

#menuToggle input[type="checkbox"] {
    display: none;
}

#menuToggle span {
    width: 25px;
    height: 3px;
    background-color: black;
    margin: 5px auto;
    display: block;
}

#menuToggle label {
    cursor: pointer;
    padding: 10px;
}

#menu {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

#menu li {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    #menuToggle {
        display: block;
    }

    #menu {
        display: none;
        background-color: #333;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        text-align: center;
    }

    #menu.active {
        display: flex;
    }

    #menuToggle input:checked~ul {
        display: block;
    }

    header a {
        display: block;
        margin: 0;
        padding: 10px;
    }
}