/* Header */
header{

    /* Background */
    background-image: url("../assets/background.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;

    /* Text */
    font-size: xx-large;
    color: antiquewhite;

    /* Dimenssions */
}

/* ====================================================================================================================================================== */
/* The images of food in home page */
.images{

    /* Dimenssions */
    margin: 5% 0;

    /* Display */
    display: grid;
    grid-template-columns: repeat(3, 1fr);

}
/* Every single image in home page */
.images img{

    /*Dimenssions*/
    width: 95%;
    height: 80%;
    margin: 1%;

    /*Border*/
    border: 2px solid black;
    border-radius: 2%;
    -webkit-border-radius: 2%;
    -moz-border-radius: 2%;
    -ms-border-radius: 2%;
    -o-border-radius: 2%;

}
/* Buttons in home page */
.buttons{

    /*Dimenssions*/
    margin-bottom: 5%;

    /* Text */
    text-align: center;

}
/* Every single button in home page */
.buttons button{

    /*Dimenssions*/
    width: 30%;
    padding: 1%;
    margin: 1%;

    /* Text */
    font-size: x-large;
    color: white;

    /* Background */
    background-color: wheat;

}
/* Every single link in button in home page */
.buttons a{

    /* Text */
    color: white;

}
