body {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgb(29, 28, 28);
  }
  
  .image-container {
    text-align: center;
  }
  
  .image-container img {
    margin: 15px;
    border-radius: 10px;
    box-shadow: 0 0px 5px 0px white;
    background-color: lightgray;
    width: 300px;
    height: 300px;
  }
  
  .btn {
    background-color: rgb(255, 255, 255);
    border: none;
    padding: 10px 20px;
    margin: 20px;
    color: rgb(0, 0, 0);
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    font-size: 15px;
  }
  
  .btn:hover {
    opacity: 0.9;
    background: rgb(243, 47, 47);
  }
  footer {
    margin: 0;
    height: 50px;
    background: rgb(243, 47, 47);
    width: 100%;
    color: white;
    align-items: center;
    text-align: center;
  }
  footer p{
    font-size: 20px;
  }
  footer a{
    text-decoration: none;
    font-size: 20px;
    color: rgb(22, 22, 22);
    font-weight: bold;
  }
