/* Reset styles */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
  }
  
  /* Global styles */
  body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color:rgb(213, 208, 228);
    background-image: url(../links-and-images/images/coolbed.jpg);
    background-size: cover;
    background-color: rgb(0,0,0,0.55);
    background-position: center bottom;
    background-repeat: no-repeat;
    font-weight: bold;
  }
  body::after{
    content: '';
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    background-color: rgb(0,0,0,0.55);
  }
  
  .container {
    max-width: 960px;
    margin: 0 auto;
    padding: 20px;
  }
  
  header {
    text-align: center;
    padding: 20px 0;
  }
  
  h1 {
    font-size: 32px;
    font-weight: bold;
    color: rgb(97, 207, 23);
  }
  
  nav ul {
    list-style-type: none;
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  
  nav ul li {
    margin: 0 10px;
  }
  
  nav ul li a {
    text-decoration: none;
    color: rgb(223, 211, 211);
    font-weight: bold;
  }
  nav ul li a:hover {
    color: rgb(97, 207, 23);
    transition: 0.5s;
  }
  section {
    margin-bottom: 40px;
  }
  
  h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  ul li {
    margin-bottom: 20px;
  }
  
  h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  p {
    margin-bottom: 10px;
  }
  
  footer {
    text-align: center;
    padding: 20px 0;
    background-color: #333;
    color: rgb(72, 206, 31);
  }
  
  /* Responsive styles */
  @media (max-width: 768px) {
    .container {
      padding: 10px;
    }
  
    h1 {
      font-size: 28px;
    }
  
    h2 {
      font-size: 22px;
    }
  
    h3 {
      font-size: 18px;
    }
  }
  