.word-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}


.randomWordsButton {
    margin-bottom: 20px; /* Adjust as needed */
    background-color: #A5976D;
}


.word-container {
    width: 48%;
    margin-bottom: 10px;
    border: 1px solid black;
    padding: 10px;
    box-sizing: border-box;
    position: relative;
    font-size: 20px;
    height: 80px; /* Increased height */
}

.copy-button {
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 12px; /* Smaller font size */
    padding: 5px 10px; /* Smaller padding */
}

