body {
    margin: 0;
    padding: 0;
    background-color: #0d6c23;
    font-family: 'Roboto', sans-serif, bold;
    text-align: center;
}

main {
    display: flex;
    justify-content: space-around;
    align-items: flex-start; 
    padding: 0;
    margin: 0; 
}

#characterContainer {
    display: flex;
    justify-content: flex-start; 
    align-items: flex-start; 
    overflow: hidden;
    margin: 0; 
}

#characterObj {
    width: 890px; 
    height: 690px; 
    margin: 0; 
    padding: 0; 
}

.button-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 1rem;
    justify-items: center;
    align-items: center;
    padding: 2rem; 
    background-color: #f8ff9f;
    border: 2px solid #ccc;
    max-width: 600px;
    height: 400px; 
    margin-top: 10rem;
    margin-right:15rem;
}

h2 {
    grid-column: span 2; 
    margin-bottom: 1rem;
    color: #333;
    font-size: 1.5rem;
    text-transform: uppercase;
}

button {
    height: 3rem;
    width: 9rem;
    background-color: #000000;
    color: #ffffff;
    font-size: 1rem;
    border: none;
    border-radius: 0.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    opacity: 0.9;
    transition: all 0.3s ease;
}

button:hover {
    cursor: pointer;
    opacity: 1;
    background-color: #009404;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

#feed {
    background: #000000;
}

#feed:hover {
    background-color: #009404;
}
#messageBox {
    position: absolute; 
    top: 50%; 
    left: 30%; 
    transform: translate(-50%, -50%); 
    background-color: rgba(255, 255, 255, 0.8);
    padding: 1rem; 
    border-radius: 5px; 
    font-size: 1.5rem;
    color: #000; 
    display: none;
}

.hidden {
    display: none;
}
#title {
    position: absolute; 
    top: 5%; 
    left: 26.5%; 
    transform: translateX(-50%); 
    font-size: 2rem; 
    color: #000000; 
    text-shadow: 2px 2px 4px rgb(255, 252, 252);
    z-index: 10; 
}
