/* Ensure body and html take up the full height of the viewport */
html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
}


/* Set the background image to resize and stay centered */
body {
  background-image: url('/img/bgrd2.jpeg');
  /* background-color: red; */
  background-size: cover;
  /* Scales the image to cover the entire page */
  background-position: center center;
  /* Centers the image horizontally and vertically */
  background-repeat: no-repeat;
  /* Prevents the image from repeating */
  background-attachment: fixed;
  /* Ensures the background stays in place on scroll */
  font-size: 16px;
  font-family: "Philosopher", sans-serif;
  font-weight: 400;
  font-style: normal;
}

a {
  text-decoration: none;
  color: #ffe19a;
}

.logo {
  margin-top: 40px;
  text-align: center;
}

.logo img {
  max-width: 300px;
  width: 100%;
}

.title{
  margin-top: 25px;
  text-align: center;
}

.title h1,
.title h2 {
  font-size: 55px;
  color: #ffe19a;
  text-shadow:
    -1px -1px 0 #b57f2a,
    1px -1px 0 #b57f2a,
    -1px 1px 0 #b57f2a,
    1px 1px 0 #b57f2a;
}

.title h1 {
  text-transform: uppercase;
}

.title h2 {
  font-size: 45px;
}

.casino {
  padding: 20px;
  text-align: center;
}

.casino img {
  max-width: 100%;
}

.phone, .email {
  color: #ffe19a;
  font-size: 20px;
  text-align: center;
}

.email {
  margin-bottom: 20px;
}

.socials {
  position: fixed;
  bottom: 20px;
  font-size: 26px;
  text-align: center;
  width: 100%;
}

.socials a {
  margin: 0 5px;
}

@media (min-width: 576px) {
  .casino img {
    width: 100%;
  }
}

@media (min-width: 768px) {
  
}

@media (min-width: 992px) {
  .casino img {
    width: 90%;
  }
}

@media (min-width: 1200px) {
  .casino img {
    width: 80%;
  }
}

@media (min-width: 1400px) {
  .casino img {
    width: 70%;
  }
}

@media (min-width: 1600px) {
  .casino img {
    width: 60%;
  }
}

@media (max-width: 575.98px) {
  .title h1 {
    font-size: 45px;
  }
  .title h2 {
    font-size: 35px;
  }
  .logo img {
    max-width: 240px;
    width: 100%;
  }
}

@media (max-width: 767.98px) {

}

@media (max-width: 991.98px) {

}

@media (max-width: 1199.98px) {

}

@media (max-width: 1399.98px) {

}