
body{
    width: 80%;
    margin: auto;
}

.logo{
    height: 15vh;
   
}

.logo img{
    height: 100%;
    overflow: hidden;
}
p{
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 12px;
    color:black;
}

nav{
    color: red;
    background-color: #00ff00;
    border-radius: black;
    width: 80%;
    float: right;
    display: flex;
}

nav a {
    color: blue;
    font-size: 1.5em; 
    flex: auto;
    text-align: center;
    line-height: 15vh;
    text-decoration: none;
}

#img-of-restraunt{
 width: auto;
 height: auto;
 max-width: 500px;
 min-width: 250px;
 float: left;
}
main{
    clear: both;
}
#home-page-main{
    display: grid;
    grid-template-columns: repeat(3,3fr);
    grid-template-rows: auto;
    grid-template-areas: 
    "talking-about-food image-of-restraunt opening-times"
}

#talking-about-food{
    grid-area: talking-about-food;
}
#Image-of-restraunt{
    grid-area: image-of-restraunt;
}
#opening-times{
    grid-area: opening-times; 
    text-align: right;
}
img{
    max-width: 200px;
}
#maps{
    grid-area: talking-about-food;
}
.home-page-section{
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: auto;
    grid-template-areas: 
    "story1"
    "story2 story3";
}
location{
    width: 205px;
    height: 205px;
}

.story1{
    grid-template-areas: story1 ;
}
.story2{
    grid-template-areas: story2 ;
}
.story3{
    grid-template-areas: story3 ;
}

img{
    width: 100%;
    height: 50%;
    position: relative;
}

#slideshow-container{
    max-width: 50%;
    position: relative;
    margin: auto;
}

.text{
    color: white;
    position: absolute;
    bottom: 8px;
}

.slide-number{
    color: white;
    position: absolute;
}
.myslide{
    display: none;
}

#booking-form{
    grid-area: data-collection;
}

#holiday-images{
    grid-area: slideshow-container;
}

#opening-times{
    grid-area: holiday-opening-times;
}

#table-booking-main{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-template-rows: auto;
    grid-template-areas: 
    "data-collection slideshow-container holiday-opening-times";
}
#table-booking-section{
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: auto;
    grid-template-areas: 
    "story4"
    "story5"
    "story6";
}

.slide-container {
    max-width: 1000px;
    position: relative;
    margin: auto;
}

/*hides the images by default*/
.myslide {
    display: none;
    animation-name: fade;
    animation-duration: 1.5s;
}

.myslide:first-child {
    display: block; /*shows the first slide */
}

/* Next and Previous buttons */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size:  18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

/* Position the next button@ to the right */
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}

/* caption text */
.text {
color: #00ff00;
font-size: 15px;
padding: 8px 12px;
position:relative;
bottom: 8px;
width: 100%;
text-align: center;
}

/* slide number text */
.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

/* dots */
.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active, .dot:hover {
    background-color: #717171;
}

@keyframes fade {
    from {opacity: .4}
    to {opacity: 1;}
}

.prev, .next {
    background-color: rgba(0,0,0,0.5);
}