body {
  font-family: Monospace, Monaco;
  background-image: url('https://media.istockphoto.com/id/1128228758/vector/savanna-landscape-vector-illustration.jpg?s=612x612&w=0&k=20&c=ejSLZxst1K73FLe89Jf9LAg4MaFPt2OUuJRH-jCmNMM=');
  background-size: cover;
  text-align: center;
  color: white;
  margin: 0;
  padding: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  justify-content: flex-start; 
}
  
img{

    width:300px;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;

  }



.black-button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    color: #fff;
    background-color: #000;
    border: 2px solid #000;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
  }

.black-button:hover {
    background-color: #333;
    border-color: #333;
  }