.R_img {
    margin: -0.2rem 0 0 -0.2rem; height: 1.2rem; width: 1.2rem;
}

.contact_content{
    grid-column: span 18;
    padding: 0 0 0 0;
}

.link {
    text-align: left;
    text-decoration: none;
    color: black;
}
.link:hover {
    opacity: 0.7;
}

.food_img {
    grid-column: span 12;
}

@media screen and (max-width: 1750px) {
    .food_img {
        grid-column: span 30;
    }
    .contact_content{
        grid-column: span 30;
        padding: 0 7% 0 7%;
    }

}

@media screen and (min-width: 420px) and (max-width: 1750px) {
    .food_img {
        animation:goout 1.8s;
        animation-timing-function:ease-out;
        animation-delay:1.2s;
        animation-fill-mode:forwards, none;
        animation-iteration-count: 1;
        -webkit-animation-iteration-count: 1;
        -webkit-animation:goout 1.8s;
        -webkit-animation-timing-function:ease-out;
        -webkit-animation-delay:1.2s;
        -webkit-animation-fill-mode: forwards, none;
      }
}

 
  @keyframes goout {
    0% {
        margin-top: 0%;
    }
    20% {
        margin-top: -14%;
    }
    100% {
        margin-top: -73.5%;
    }
  }
  