html { color-scheme: light dark; }
body { 
    margin: 0;
    font-family: Verdana, Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
    box-sizing: border-box;
    position: relative;
}
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url('/jack_up_cray.png');
    background-position: center bottom;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.1;
    z-index: -1;
}
.mainwrapper{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.dothefade{
    text-align: center;
    animation: anim 5s linear infinite;
    opacity:0.1;
}
.huggy{
    max-width: 500px;
    max-height:500px;
    
}
svg{
    max-height:300px;
    vertical-align: middle;
}
@keyframes anim {
  0% {
      opacity:0.1;
      rotate: (45deg);
  }
  50% {
      opacity:1;
      rotate: (-45deg);
  }
  100% {
      opacity:0.1;
  }
}
.sfaded{
    color:#6e6e6e;
}
#video-container{
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
} 
.video-card{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}
.video-card h3{
    color:white;
}