@charset "utf-8";


body::before
{
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images2.alphacoders.com/659/659390.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.65;
    z-index: -1;
}
body
{
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
  }
  
  header {
    background-color: transparent;
    color: #39332c;
    font-family: Georgia, 'Times New Roman', Times, serif;
    padding: 45px;
  }
  
  nav {
    background-color: transparent;
    padding: 10px;
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  
  nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
  }
  
  nav li {
    margin-right: 10px;
  }
  
  nav li:last-child {
    margin-right: 0;
  }
  .btn1 {
    background-image: url('imgp2.jpg');
    background-size: cover;
    background-position: center;
  }
  
  .btn2 {
    background-image: url('img4.jpeg');
    background-size: cover;
    background-position: center;
  }
  
  .btn3 {
    background-image: url('imgp4.jpg');
    background-size: cover;
    background-position: center;
  }
  
  .btn4 {
    background-image: url('imgp3.jpeg');
    background-size: cover;
    background-position: center;
  }

  nav li a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: rgb(240, 240, 235, 1);
    background-color: rgba(100, 97, 86, 0.7);
    font-size: 30px;
    font-family: Georgia, 'Times New Roman', Times, serif;
    padding: 60px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease-in-out;
    width: 300px;
    height: 90px;
    opacity: 0.95;
  }
  
  nav li a:hover {
    background-color: #2d2c29;
    color: #fff;
  }
  
  main {
    margin: 20px;
    max-width: 800px;
    margin-top: 100px;
  }
  
  h1 {
    margin-top: 50px;
    margin-bottom: 20px;
    font-size: 40px;
  }
  
  p {
    margin: -400px;
    background-color: transparent;
    color: #423929;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 15px;
    margin-bottom: 10px;

  }

  .play-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ffffff;
    opacity: 0.65;
    border: 1px solid #c2c2c2;
    font-size: 24px;
    transition: background-color 0.3s ease-in-out;
    position: relative; 
  }
  
  .play-button ion-icon {
    font-size: 20px;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  .play-button:hover {
    background-color: #a8a8a8;
    cursor: pointer;
  }
  