body {
    margin: 0;
    background-color: #f4f4f4;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 90%;
    height: auto;
    margin: auto;
}

.text {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 1.2rem;
    color: #333;
    font-weight: bold;
}

.quote {
    position: absolute;
    top: 10%; 
    right: 10px;
    font-size: 1rem;
    color: #555;
    text-align: right;
    max-width: 30%;
}

.triangle {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
}

.row {
    display: flex;
    justify-content: center;
}

.brick {
    width: 20px;
    height: 20px;
    margin: 1px;
    background-color: grey;
    border-radius: 2px;
    transition: background-color 0.3s ease;
}

.yellow-brick:hover {
    transform: scale(1.3) rotate(10deg);
    box-shadow: 0 0 20px 5px rgba(255, 223, 0, 0.8);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

/** comment out original footer

footer {
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #666;
}
 */

footer {
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #666;
    background-color: #f4f4f4;
    padding: 10px 0;
    border-top: 1px solid #ccc;
}

footer a {
    color: #007BFF;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
    color: #0056b3;
}


/* Side Menu */
.side-menu {
    position: fixed;
    top: 25%; /* Start 25% of the way down */
    left: 0;
    width: 200px;
    background-color: #2c3e50;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
}

.menu-button {
    display: block;
    width: 90%;
    margin: 10px 0;
    padding: 10px 15px;
    text-align: center;
    font-size: 18px;
    color: #ecf0f1;
    text-decoration: none;
    background-color: #34495e;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.menu-button:hover {
    background-color: #1abc9c;
    color: #fff;
    transform: scale(1.1); /* Slight enlargement */
    cursor: pointer;
}



