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;
}

