
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-image: url('https://www.racefans.net/wp-content/uploads/2018/04/racefansdotnet-20180407-002514-1.jpg');
    background-size: cover; 
    background-repeat: no-repeat; 
    background-position: center; 
    display: grid;
    place-items: center;
    height: 100vh;
  }
  
  main {
    width: 80%;
    margin: auto;
    padding: 20px;
  }
  
  #title {
    text-align: center;
    font-size: 36px;
    color: #333;
  }
  
  #description {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-top: 10px;
  }
  
  #img-div {
    text-align: center;
    margin-top: 20px;
  }
  
  #image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
  }
  
  #img-caption {
    font-size: 16px;
    color: #555;
    margin-top: 10px;
  }
  
  #tribute-info {
    font-size: 18px;
    margin-top: 20px;
    text-align: justify;
    color: #333;
  }
  
  main {
    background-color: rgba(255, 255, 255, 0.834);
    width: 90%;
    max-width: 800px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
  }
  
  #who{
    font-weight: bold;
  }
  
  button#tribute-link {
    width: 100%;
    padding: 10px;
    background-color: rgb(43, 46, 188);
    color: white;
    font-size: 1.1em;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  button#submit:hover {
    background-color: rgb(89, 131, 231);
  }

  nav {
    display: flex;
    justify-content: center;
    background: linear-gradient(90deg, #000000, #2196F3);
    padding: 15px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: 15px;
}

nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 20px;
    font-weight: bold;
    font-size: 1.2em;
    transition: color 0.3s ease, transform 0.3s ease;
}

nav a:hover {
    color: #8e8e8e;
    transform: scale(1.1);
}

nav a:active {
    color: #FF4500;
}