body {
    font-family: Arial, Helvetica, sans-serif;
    color: #f2f2f2;
    text-align: center;
    background-image: url(./bpxxqqvps4h91.gif);
    background-size: 90%;
}

p {
    color: hotpink;
    padding: 1rem 0;
}

h1 {
    color:aqua
}

h2 {
    color: aquamarine
    background-color: rgb(255, 255, 165);
}


.image{
    border: 2px solid white;
    border-radius: 2px;
    height: 400px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.container {
  width: 70%;
  margin: auto;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid black;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.6);
}

.link-button {
    text-decoration: none;
    color: white;
    border: 1px solid gray;
    background-color: blueviolet;
    padding: 1rem;
    border-radius: 5px;
    text-transform: uppercase;
    box-shadow: 2px 3px #888888;
}

.image:hover {
    transform: scale(1.1);
   box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}
 
.link-button:hover {
     background-color: rgb(157, 95, 216);
}
