@font-face {
    font-family: 'custom';
    src: url('../fonts/Josefin_Sans/JosefinSans-Italic-VariableFont_wght.ttf') format('truetype');
}
body, html {
    margin: 0;
    height: 100%;
    overflow: hidden;
    font-family: 'custom';
  }

body {
    display: flex;
    justify-content: center;
    align-items: center;
  }


.maintitle {
    font-size:9.5vw;
    position:absolute;
    left:0;
    bottom:-9vw;
    padding:none;
}

.author {
    font-size:5vw;
    position:absolute;
    right:0;
    bottom:-5.5vw;
    padding:none;
}


.water-background {
    width: 85vh;
    height: 85vh;
    position:absolute;
    float: center;
    top: 0;
    left: 0;
    z-index: -1;
    background: #519ede;
    animation: waterAnimation 2s ease-in-out infinite alternate;
    overflow: hidden;
    position: relative;
    border:none;
    box-shadow: 0px 0px 30px 30px #5ca6e2;
    border-radius: 1000px;
    border: 2px solid #519ede; /* Specify the border style */

  }
  
  /* Keyframes for the water animation */
  @keyframes waterAnimation {
    0% {
      background-position: 0% 0%;
      transform: scale(1);
    }
    100% {
      background-position: 100% 100%;
      transform: scale(1.05);
    }
  }

  .water-background::before {
    content: '';
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/'); /* URL to noise texture */
    opacity: .2; /* Adjust the opacity of the noise */
    pointer-events: none;
  }


  .water-background::after {
    content: '';
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('lala.jpg'); /* URL to noise texture */
    opacity: .2; /* Adjust the opacity of the noise */
    pointer-events: none;
  }

.play {
    width: 16vw; /* Set desired width */
    height: 16vw; /* Set desired height */
    border-radius: 100%;
    position: absolute;
    display:block;
    margin:0;
    opacity: 0.8;
    mix-blend-mode: screen;
    box-shadow: 0px 0px 30px 30px #2790e7;
}



/* CSS for the image */
.play img {
    width: 100%; /* Ensure the image takes the full width of the container */
    height: auto; /* Maintain aspect ratio */
    transition: transform 0.5s ease-in-out; 
    box-shadow: 0px 0px 33px 33px #2790e7;
    border-radius: 100%;/* Add a smooth transition effect */
  }
  
  /* Hover effect for the image */
  .play:hover img {
    transform: scale(1.3); /* Enlarge the image on hover (adjust the scale as needed) */
    opacity: 1.4;
    box-shadow: 0px 0px 33px 33px #2790e7;
    border-radius: 100%;
  }

.map table{
    padding:none;
    border: 10px solid blue;
}