body{
    background-size: cover;
    background-position: center;
    background-color: #240101;
}
.sour-gummy {
  font-family: "Sour Gummy", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

.gen-wrap{
    font-size: 24px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 40px;
}
.video-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14%;
}
img {
    width: 400px;    
    animation: shake 6s infinite;
}
#dc{
    margin-right: 8.3%; 
}
#dc:hover, #nyc:hover{
    cursor: pointer;
    animation-play-state: paused;
    animation: growShrink 2s infinite;
}
video {
    width: 300px;
}
#dc-2{
    margin-right: 14%;
}
.video-container {
    position: relative;
    width: 300px;
}
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 533.33px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-container:hover .video-overlay {
    opacity: 1;
}
.video-container:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}
button {
    background-color: #4CAF50; /* Green */
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 8px;
}
button:hover {
    background-color: #45a049; 
    transform: scale(1.05);
    transition: transform 0.3s ease-in-out;
}

@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  30% {
    transform: translateX(-10px);
    transform: rotate(15deg); 
  }
   70% {
    transform: translateX(10px);
    transform: rotate(-15deg); 
  }
}

@keyframes growShrink {
  0%, 100% {
    transform: scale(1); /* Original size */
  }
  50% {
    transform: scale(1.05); /* Grown size */
  }
}