*{
    box-sizing: border-box;
}

body{

    background-color: #FFFFFF;
    background-image: linear-gradient(#eeeeee, #ffffff);
    background-attachment: fixed;
    margin: 0px;
}

.wrapper{
    display: grid;
    grid-auto-rows: minmax(0px, auto);
    grid-template-columns: minmax(0px,1fr) repeat(6, minmax(0,175px)) minmax(0px,1fr);

}

#homehero{
    background-image: url(images/homehero.jpeg);
    grid-row: 2 / 3;
    grid-column: 1 / -1;
    height: 800px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin: 0;
    padding-bottom: 4em;
}

#reservationhero{
    background-image: url(images/hotel.jpeg);
    grid-row: 2 / 3;
    grid-column: 1 / -1;
    height: 800px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin: 0;
    padding-bottom: 4em;
}

#roadhero{
    background-image: url(images/road1.jpeg);
    grid-row: 2 / 3;
    grid-column: 1 / -1;
    height: 800px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin: 0;
    padding-bottom: 4em;
}



#blackbar{
    background-color: black;
    grid-row: 1 / 2;
    grid-column: 1 / -1;
}

nav{
    top: 0;
    height: 50px;
    font-weight: bold;
    grid-row: 1 / 2;
    grid-column: 1 / -1;
}

nav ul{
    list-style: none;
    display: flex;
    flex-flow: row nowrap;
    font-size: 1.4em;
    margin: 0px;
    padding: 0px;
}

nav a{
    text-decoration: none;
    color: #FFFFFF;
    display: block;
    text-align: center;
    padding: 1rem 0rem;
}

nav a:hover{
    background-color: salmon;
}

nav ul li{
    width: 100%;
}

main{
    padding-left: 2em;
    padding-right: 2em;
    display: block;
    grid-row: 3 / 8;
    grid-column: 2 / -2;
    background-color: #FFFFFF;
    text-align: center;
}

#intro{
    text-align: center;
    grid-row: 3 / 4;
    grid-column: 2 / -2;
    padding-bottom: 5em;
}

h1{
    color: salmon;
    font-size: 3.25em;
}

main ul{
    list-style: none;
    text-align: center;
    padding: .5rem;
    font-family: sans-serif;
}

section{
    display: grid;
    justify-content: center;
    align-content: center;
    text-align: center;
    color: salmon;

    grid-auto-flow: column;
    gap: 40px;
    margin-left: 20px;
    margin-right: 20px;
}

#fishpic{
    background-image: url(images/fish2.jpg);
    width: 300px;
    height: 500px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

#birdpic{
    background-image: url(images/bird2.jpg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 300px;
    height: 500px;
}

#viewpic{
    background-image: url(images/view111.jpg);
    height: 500px;
    width: 300px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

#detail{
    padding-top: 50px;
    grid-row: 3 / 4;
    grid-column: 3 / -3;

}

#review{
    text-align: center;
    color: black;
    margin-top: 100px;
    grid-column: 2 / 3;
    grid-row: 4 / 5;
}

#media{
    text-align: center;
    color: black;
    margin-top: 100px;
    margin-bottom: 100px;
    grid-column: 5 / 6;
    grid-row: 4 / 5;
}

#tapic{
    background-image: url(images/tripadvisor.jpeg);
    background-size: cover;
    background-position: center;
    height: 100px;
    width: 130px;
    margin-left: auto ;
    margin-right: auto;
}

#fbpic{
    background-image: url(images/fb.jpeg);
    background-size: cover;
    background-position: center;
    height: 100px;
    width: 100px;
    margin-left: auto;
    margin-right:auto;
}

table{
    margin: 0 auto;
    border: 1px solid #424242;
    width: 100%;
    border-collapse: collapse;
}

th{
    padding: 5px;
    border: 1px solid #424242;
}

td{
    padding: 5px;
    border: 1px solid #424242;
    text-align: center;
}

.text{
    text-align: left;
}

tr:nth-child(even){
    background-color:#f3f3f3 ;
}

footer{
    grid-row: 8 / 9;
    grid-column: 1 / -1;
    color: #424242;
    background-color:rgba(0, 0, 0, 0.247);
    text-align: center;
    bottom: 0;
    padding: 1em;
    margin-top: 2rem;
    font-size: .80em;
}   

