/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

body{
    background-color: rgb(240, 223, 200);
    margin: 0;
    padding: 0;
}

@media (min-width:768px){
    .container{
        flex-direction:row;
    }
}

.map-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
  }

  .map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }

#contents{
    display: flex;
    padding: 1rem;
    flex-direction:column;
    background-color: white;
    border-style:ridge;
    border-width:0.2cm;
    border-radius: 20px;
    border-color: tan;
}

#logo{
    display:block;
    margin:auto;
    width: 80%;
}

.yelp-review{
    border-radius:20px;
}

#games{
    border-radius:20px;
    border-style:solid;
    border-color:tan;
    border-width:0.1cm;
}

.casino{
    display: flex;
    padding: 1rem;
    margin-top: -10px;
    font-size:0.76in;
    font-weight: 600;
    font-family:'Times New Roman';
    color:rgb(0, 0, 0);
}

h2{
    display: flex;
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    font-size:  0.5in;
    background-color: white;
    border-style:ridge;
    border-width:0.5cm;
    border-radius: 20px;
    border-color: tan;
    margin-top: 20px;
    padding: 10px;
}

h3{
    display:flex;
    padding: 1rem;
    text-align:center;
    font-weight:600;
    font-size: 0.3in;
    background-color:white;
    border-style:ridge;
    border-radius: 20px;
    border-width:0.5cm;
    border-color:tan;
    margin-top: 20px;
}

#Home{
    display: flex;
    padding: 1rem;
 background-color:white;
 padding: 30px;
 border-radius: 20px;
 border-style:ridge;
 border-width:0.5cm;
 border-color:tan;
}

#outside{
    max-width: 100%;
    height: auto;
 border-radius: 20px;
 border-style:ridge;
 border-width:0.5cm;
 border-color:tan;
}

ul{ display: flex;
        flex-direction:row;
        list-style: none;
        justify-content: space-around;
        background-color:white;
        border-style: ridge;
        border-width:0.5cm;
        border-radius:20px;
        border-color:tan;
        padding: 5px;
    
    }

    .contact-form {
      width: 100%;
      max-width: 400px;
    }
    .contact-form h2 {
      margin-bottom: 20px;
      text-align: center;
    }
    .contact-form label {
      display: block;
      margin-bottom: 5px;
      font-weight: bold;
    }
    .contact-form .required::after {
      content: " *";
      color: red;
    }
    .contact-form input,
    .contact-form textarea {
      width: 100%;
      border: 1px solid #ccc;
      border-radius: 5px;
      font-size: 16px;
    }
    .contact-form button {
      width: 100%;
      background: tan;
      color:white;
      border-radius: 5px;
      cursor: pointer;
      font-size: 18px;
    }
    .contact-form button:hover {
      background: #005bb5;
    }

#icon {
        cursor: pointer;
        
    }

#menu{
        cursor: pointer;
    }