body{
  background-image: url("leopardprint.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family:"Century Gothic", "Arial", sans-serif ;
  text-transform: lowercase;
  color:#fff;
}

.titlebox{
  font-weight: bold;
  text-transform: lowercase;
  font-size: 50px;
  display:grid;
  margin-top: 0px;
  margin-bottom: 7px;
  text-shadow: 5px 3px 2px hotpink;
}


button{
    align-items: baseline;
    font-size: 2em;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 0.5em 1.5em;
    border-radius: 0.5em;
    transition: 0.2s ease-in-out;
    border-style:outset;
    border-width: 10px;
    border-color: hotpink;
    background: linear-gradient(to bottom right,#ed77b2, #f03a95); 
    color: #fff;
    cursor: pointer;
    font-family:"Century Gothic", "Arial", sans-serif ;
    text-transform: lowercase;
    color:#fff;
}

button:hover{
    transform: translateY(-10px);
}


img{
    image-rendering:crisp-edges;
    object-fit: cover;
    place-items: center;
    height: 500px;
    width: 300px;
    border-bottom: 20px;
    border-radius: 0.5em;
    border-color: white;
    border-style:double;
    border-width: 10px;
    margin-top: 10px;
    margin-bottom: 15px;
}

