```css


body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: rgb(187, 176, 176);
}


/* =========================
   MAIN CONTENT
   ========================= */

.content {
    margin-left: 145px;
    padding: 40px;
    padding-top: 30px;
}

h1 {
    text-align: center;
    font-size: 80px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.content p {
    text-align: center;
    font-size: 20px;
}


/* =========================
   SIDEBAR
   ========================= */

.sidebar {
    position: fixed;

    left: 0;
    top: 0;

    width: 145px;
    height: 100vh;

    background-color: #222;

    color: white;

    padding: 20px;

    box-sizing: border-box;

    border-right: 3px solid #333;

    transition: transform 0.3s ease;

    z-index: 999;

    
}


/* Sidebar title */

.sidebar h2 {
    margin-top: 60px;
    margin-bottom: 30px;
    text-align: left;
    padding: 10px;
    
}


/* Sidebar links */

.sidebar a {
    display: block;

    color: white;

    text-decoration: none;

    margin: 20px 0;

    padding: 10px ;

    text-align: left ;
    border-radius: 5px;

    transition: background-color 0.2s ease;
    
}



.sidebar a:hover {
    background-color: #7701ff;
}



.sidebar.closed {
    transform: translateX(-100%);
}



.sidebar-button {
    position: fixed;

    top: 15px;
    left: 15px;

    z-index: 1000;

    font-size: 25px;

    background-color: #222;

    color: white;

    border: none;

    border-radius: 5px;

    padding: 8px 12px;

    cursor: pointer;

    transition: background-color 0.2s ease;
}


/* Button hover */

.sidebar-button:hover {
    background-color: #7701ff;
}



h1 {
    text-align: center;
    font-size: 80px;
    color: white;
    margin-top: 40px;
}

.body_cheat {
    background-color: red;
    

}
.body_cheat img {
    width: 80%;
    display: block;
    margin: 20px auto;
}

/*  For secret clicking pathway thing */

.click-box {
    position: absolute;

    left: 100px;
    top: 200px;
    background-color: rgba(0, 255, 0, 0.3);
    width: 200px;
    height: 40px;

    cursor: pointer;
}

.screenshot-container {
    position: relative;
    width: 80%;
    margin: auto;
    
}

.screenshot-container img {
    width: 100%;
    display: block;
}

.click-box {
    position: absolute;

    left: 100px;
    top: 200px;

    width: 100px;
    height: 40px;

    cursor: pointer;
}