body {
background-color: #3a3838dc; /* light grey background */
}
.blink {
animation: blink 2s infinite;
}
@keyframes blink {
0% {
opacity: 1;
}
50% {
opacity: 0.5;
}
100% {
opacity: 1;
}
}
.btn {
position: relative;
z-index: 1;
}
.iframe-container {
position: relative;
overflow: hidden;
}
.iframe-container iframe {
margin-top: -85px; /* adjust the value to hide the header section */
}