/*--------------------------------------
----------------------------------------
----------------------------------------
General styling irrespective of screen size*/


/*Styling for generic font*/

/*Styling for body font*/

@font-face {
  font-family: Institute;
  src: url(../Styles/Fonts/Institute.woff) format(woff);
}

@font-face {
  font-family: Tahoma_server;
  src: url(../Styles/Fonts/tahoma.woff) format(woff);
}

@font-face {
  font-family: Segoe_server;
  src: url(../Styles/Fonts/SegoeUIThis.woff) format(woff);
}

/* Set rules to fill background*/
body {
  background-color: black;
  background-repeat: no-repeat;
  min-height: 100vh;
  background-position: center;
}

/*Styling BBQ HOUSE*/
.title {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 400%;
  font-family: 'Times New Roman', Times, serif;
  letter-spacing: 3px;
  text-transform: uppercase;
}

/*Styling button*/
button {
  position: fixed;
  transform: translate(-50%, -50%);
  font-size: 80%;
  font-family: 'Segoe_server', 'Institute', 'Tahoma_server', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: rgba(0, 0, 0, 0.2);
  letter-spacing: 3px;
  border-style: none;
  padding: 1%;
  text-transform: uppercase;
  font-weight: bolder;
  background-color: rgb(247, 222, 16);
  color: black;
}

/*Styling buttons*/
button:hover {
  background-color: rgb(168, 3, 3);
  color: #fff;
  cursor: pointer;
}

/*Styling text in the middle of the page*/
div {
  text-align: center;
  font-weight: bolder;
}

/*Positioning footer*/
footer {
  background-color: white;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
}

/*Styling of icon - social media icons*/
.footer img {
  display: inline-block;
  float: right;
  width: 1.5%;
  padding-right: 20px;
  padding-top: 5px;
  padding-bottom: 5px;
  cursor: pointer;
}

/*Styling of footer - All rights reserved*/
.footer {
  font-size: 80%;
  font-family: 'Segoe_server', 'Institute', 'Tahoma_server', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-align: left;
  font-weight: bolder;
  letter-spacing: 3px;
  line-height: 250%;
  margin: 0;
  padding-left: 20px;
}

/*____________________________________________
______________________________________________
______________________________________________
Settings for smaller device e.g. mobile phones*/
@media only screen and (max-width: 480px) {

  /* Set rules to fill background*/
  body {
    background-image: url(../Images/Gallery/mishkaki.jpeg);
    background-size: cover;
    min-width: 100%;
  }

  /*Styling buttons*/
  button {
    top: 60%;
    left: 50%;
  }

  /*Styling footer*/
  .footer {
    font-size: 50%;
  }

}

/*____________________________________________
______________________________________________
______________________________________________
Settings for Medium devices*/
@media only screen and (min-width: 481px) {

  /* Set rules to fill background*/
  body {
    background-image: url(../Images/Gallery/brushing_chicken.jpg);
    background-size: contain;
  }

  /*Styling button*/
  button {
    top: 55%;
    left: 50%;
  }
}