
body {
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    background-image: url(../images/tiger.jpg);
    background-size: cover;
    font-family: Verdana, sans-serif;
    color: #fff;
    margin: 0;
    padding: 0;
  }
  
  nav {
    background: linear-gradient(to right, orangered, orange);
    padding: 10px;
    display: flex;
    justify-content: center;
    
  }
  
  nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 20px;
    padding: 5px 10px;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
    text-shadow: 0 8px 5px #222;
  }
  nav a:first-child {
    margin: 0; 
    padding: 0; 
    position: absolute; 
    left: 10px; 
  }
  
  nav a:hover {
    background-color: #222;
  }
  
  h1 {
    display: flex;
    justify-content: center;
    background-color: rgba(255,255,255,0.1);
    margin:20px;

  }
  
  p {
    margin: 20px;
    padding: 20px;
    background-color: rgba(255, 115, 0, 0.3);
    
  }
  .text {
    display:flex;
    justify-content: center;
    margin: 20px;
    padding: 20px;
    background-color: rgba(255, 115, 0, 0.199);
  }
  .text p {
    flex:1;
    margin: 10px;
    padding: 10px;


  }
  
  ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: baseline;
  }
  
  li {
    margin: 10px;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    transform: skewX(-5deg);
    transition: all 0.3s ease;
  }
  
  li:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: skewX(-5deg) scale(1.1);
  }
  
  a {
    color: orangered;
    text-decoration: none;
  }
  
  a:hover {
    color: orange;
  }
  footer {
    display: flex;
    justify-content: flex-end;
    position: fixed;
    bottom: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.5);
    color: #fff;
    padding: 10px 20px;
  }