body {
    margin: 0;
    height: 100vh;
    overflow: hidden;
    background-color: #f0f0f0;
    position: relative;
}

.container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hexagon-button {
    position: absolute;
    background-color: #4CAF50;
    margin: 34.64px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(25% 6.7%, 75% 6.7%, 100% 50%, 75% 93.3%, 25% 93.3%, 0% 50%);
    transition: background-color 0.3s;
}

.hexagon-button:hover {
    background-color: #45a049;
}
