
html {
    font-size: 1.5vw;
    font-family: Verdana, sans-serif;
  }
  
  body {
    background-image: url("/assets/image4.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    margin: 0 auto;
    min-height: 100vh;
    margin-bottom: 0;
    
  }
  

  header {
    background-color: #05469cc2;
    padding: 20px;
    text-align: center;

    padding-top: 30px;
    border-radius: 16px; /* Add border radius to round the corners */
    box-shadow: 0px 2px 4px rgba(231, 227, 227, 0.2); /* Add a subtle box shadow */
    margin: 0 auto;
  }
  
  h1.welcome {
    font-size: 40px; /* Increase the font size for a bigger text */
    color: #ffffff;
    width: 95%;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-family: "Arial", sans-serif;
    letter-spacing: 2px;
  }

  .row{
    display: flex;
    justify-content: space-around;
    margin-top: 100px;
    background-color: rgb(220, 226, 223);
    border-radius: 30px;
    padding: 5px;
    box-shadow:2px 2px 4px 2px rgba(20, 18, 18, 0.863);
    
    margin: 30px auto;
  }

  .title{
    color: rgb(27, 17, 17);
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
  }

  .play_link{
    display: inline-block;
    text-decoration: none;
    padding: 5px;
    background-color: rgb(11, 177, 11);
    border-radius: 10px;
    
  }
  .play_link:hover{
    display: inline-block;
    text-decoration: none;
    padding: 5px;
    background-color: rgb(8, 8, 8);
    border-radius: 10px;
    color: aliceblue;
    
  }
  main{
    width: 50%;
    
    margin: 0 auto;
    padding: 100px;
    border-radius: 20px;

  }



  /* Styling footer */
  footer {
    background-color: #05469cc2; /* Footer background color */
    color: #fff; /* Text color */
    text-align: center; /* Align text in the center */
    position: fixed; /* Fix the footer at the bottom */
    width: 100%; /* Full width */
    bottom: 0; /* Stick it to the bottom of the viewport */
    left: 0;
  }
  

.home{
  display:block;
  width: 10%;
  text-align: center;
  margin: 30px auto;
  color: white;
  text-decoration: none;
  background-color: rgba(0, 0, 0, 0.664);
}






  @media screen and (max-width:1000px) {


    html {
      font-size: 1.5vw;
      font-family: Verdana, sans-serif;
    }
    
    body {
      background-image: url("/assets/image4.jpg");
      background-repeat: no-repeat;
      background-position: center;
      background-size: cover;
      width: 100%;
      margin: 0 auto;
      min-height: 100vh;
      margin-bottom: 0;
      
    }
    
  
    header {
      background-color: #05469cc2;
      padding: 20px;
      text-align: center;
  
      padding-top: 30px;
      border-radius: 16px; /* Add border radius to round the corners */
      box-shadow: 0px 2px 4px rgba(231, 227, 227, 0.2); /* Add a subtle box shadow */
      margin: 0 auto;
    }
    
    h1.welcome {
      font-size: 20px; /* Increase the font size for a bigger text */
      color: #ffffff;
      width: 95%;
      margin: 0;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
      font-family: "Arial", sans-serif;
      letter-spacing: 2px;
    }
  
    .row{
      display: flex;
      justify-content: space-around;
      margin-top: 100px;
      background-color: rgb(220, 226, 223);
      border-radius: 30px;
      padding: 5px;
      box-shadow:2px 2px 4px 2px rgba(20, 18, 18, 0.863);
      
      margin: 30px auto;
    }
  
    .title{
      color: rgb(27, 17, 17);
      font-family: 'Courier New', Courier, monospace;
      font-weight: bold;
      font-size: 20px;
    }
  
    .play_link{
      display: inline-block;
      text-decoration: none;
      padding: 5px;
      font-size: 20px;
      background-color: rgb(31, 243, 31);
      border-radius: 10px;
      
    }
    .play_link:hover{
      display: inline-block;
      text-decoration: none;
      padding: 5px;
      background-color: rgb(8, 8, 8);
      border-radius: 10px;
      color: aliceblue;
      
    }
    main{
      width: 50%;
      
      margin: 0 auto;
      padding: 100px;
      border-radius: 20px;
  
    }
  
  
  
    /* Styling footer */
    footer {
      background-color: #05469cc2; /* Footer background color */
      color: #fff; /* Text color */
      text-align: center; /* Align text in the center */
      position: fixed; /* Fix the footer at the bottom */
      width: 100%; /* Full width */
      bottom: 0; /* Stick it to the bottom of the viewport */
      left: 0;
    }
    
  }