body {
    background-color: #333; /* Dark gray or black */
}
.stuff {
    padding:25px;
    font-family: "Roboto Mono", sans-serif;
    display: flex;
    flex-direction: column; /* Stack elements vertically */
    align-items: center; /* Center horizontally */
    justify-content: center; /* Center vertically */
    height: 100vh; /* Full viewport height */
    margin: 0;
    max-width: 100%;
}
#skibidi {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    max-width: 100%;
}
.button {
    display: inline-block;
    padding: 15px 25px;
    font-size: 24px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    outline: none;
    color: #fff;
    background-color: #0444;
    border: none;
    border-radius: 15px;
    box-shadow: 0 9px #999;
}
  
.button:hover {background-color: #555}  
.button:active {
    background-color: #3e8e41;
    box-shadow: 0 5px #666;
    transform: translateY(4px);
}
#colorhere {
    margin: 50px;
    display: flex; /* Enables flexbox */
    align-items: center; /* Centers vertically */
    justify-content: center; /* Centers horizontally */
    text-align: center; /* Ensures text alignment */
    width: 150px;
    height: 100px;
    border-radius: 10px; /* Optional: makes edges rounded */
    font-size: 18px;
    font-weight: bold;
    color: white; /* Adjust text color for visibility */
}
