body{
    background-image: url("images/pexels.jpeg");
    background-size:auto;
}
.containhead{
    font-size:80px;
    color: beige;
    display: grid;
    margin: auto;
    justify-content: center;
    align-content: center;
    font-family: "Ballet", cursive;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    grid-template-columns: auto auto auto auto;
    grid-template-rows: auto auto auto auto;
}
main{
    display: grid;
    grid-template-columns: auto auto auto;
    grid-template-rows: auto 222px auto auto;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  gap: 10px;
}
h1, img, footer{
    grid-column-start: 1;
    grid-column-end: 5;
    border-radius: 12px;
    
}

h1{
    text-align: center;
}
img{
    height: 100%;
    object-fit: cover;
    margin-left: auto;
    margin-right: auto;
    border-style: solid;
    border-color: rgb(131, 131, 131);
}
.oswald-footer {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: italic;
}
.contain, footer{
    background-color: rgb(245, 245, 220, 0.6);
    color: black;
    border-radius: 12px;
    border-style: solid;
    border-color: rgb(131, 131, 131);
    padding: 5px;
}