.content {
    text-align: center;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto; 
    position: relative;
    min-height: 100vh; 
    padding-bottom: 200px; 
}

.content h1 {
    font-size: 3rem;
    margin-bottom: 5rem;
    color: white; 
}

.wordsContainer {
    display: flex;
    justify-content: center;
    gap: 80px; 
    width: 100%;
    padding: 0 20px; 
    flex-wrap: wrap; 
}

.wordsLeft, .wordsRight {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 50px; 
}

.word {
    font-size: 1.5rem;
    background-color: white; 
    padding: 20px;
    width: 280px;
    height: 80px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    white-space: normal;
    word-wrap: break-word;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
}


.word:hover {
    background-color: #D34236;
    color: white; 
    transform: scale(1.1); 
    z-index: 10; 
}


.word:hover::after {
    content: attr(hover-tooltip);
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px;
    background-color: #222;
    color: white; 
    font-size: 1rem;
    width: 300px;
    margin-top: 10px;
    white-space: normal;
    text-align: center;
    z-index: 20;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.8); 
    overflow-wrap: break-word;
}


.wordsRight .word:last-child, .wordsLeft .word:last-child {
    margin-bottom: 100px;
}
