@import url('https://fonts.googleapis.com/css2?family=Poetsen+One&display=swap');

body {
    font-family: Arial, sans-serif;
    color: #000000;
    background-color: #f0f0f0;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
}

div > img {
    border-radius: 8px;
    width: 100%;
    height: auto;
}


.video-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(100%);
}

.overlay-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
}

.content {
    margin-top: 608px;
    padding: 20px 10px;
    background-color: #fff6f600;
    color: #020202;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5pxpx 0;
}

.hex-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.hex {
    position: relative;
    width: 220px;
    height: 254px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: white;
    border: 0px solid rgba(0, 0, 0, 0.2);
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.581); /* Added shadow */
    transition: transform 0.3s;
}

.hex:hover {
    transform: scale(1.1);
}

.hex-in {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.hex-content {
    text-align: center;
    color: #000;
    padding: 20px;
}

.hex-content h2 {
    margin: 0;
    font-size: 1.2em;
}

.hex-content p {
    margin: 10px 0 0;
    font-size: 0.9em;
}

/* Additional content text */
.content-tittle{
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 20px;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
}
.content-text{
    font-size: 1.2em;
    text-align: center;
    margin-bottom: 20px;
    font-family: 'Roboto', sans-serif;
}

