/* -------------------------------------------------*/
/* BASIC SETUP */
/* -------------------------------------------------*/

* {
  margin:0;
  padding:0;
  -webkit-box-sizing:border-box;
  box-sizing:border-box;
}

html,
body {
  background-color: #ffffff; 
  color: #000;
  font-family: 'Lato', 'Arial', sans-serif;
  font-weight: 300;
  font-size: 20px;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

.clearfix {zoom: 1}
.clearfix:after {
  content: '.';
  clear: both;
  display: block;
  height: 0;
  visibility: hidden;
}

/* -------------------------------------------------*/
/* REUSABLE COMPONENTS */
/* -------------------------------------------------*/

.row{
  max-width:1140px;
  margin: 0 auto;
}

section {
  padding: 40px 0;
}

.box {
  padding: 1%; 
}

h1,
h2,
h3 {
  font-weight: 350;
  text-transform: uppercase;
  
}

h1 {
  margin-top:0;
  margin-bottom: 20px;
  color: #000000;
  font-size: 200%;
  word-spacing: 4px;
  letter-spacing: 1px;
  text-align:center;
  
}

h2 {
  font-size: 150%;
  word-spacing: 2px;
  text-align:center;
  margin-bottom: 30px;
  letter-spacing: 1px;
  color: #000;
}

h3 {
  font-size: 110%;
  margin-bottom: 15px;
}

h2:after {
  display: block;
  height: 2px;
  background-color: #007de8;
  content: " ";
  width: 100px;
  margin: 0 auto;
  margin-top: 30px;
}

hr {
  width: 50%;
  color: #000;
  margin-left: 25%;
  margin-right: 25%;
}



/* -------------------------------------------------*/
/* HEADER */
/* -------------------------------------------------*/

.header {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0.8))), url(../img/background.jpg);
  background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(../img/background.jpg);
  height: 50vh;
  background-position: center;
  background-attachment: fixed;
  background-size:cover;
  margin-bottom: 30px;
    }

    .event-logo img {
      display: block;  
      margin:auto;
      height: 50%;
      justify-content: center;
}

.event-header img {
  display: block;
  margin: auto;
  width: 25%;
  margin-top: 30px;
}

.event-name {
  margin-top: 20px;
  margin-bottom: 20px;
  color: #fff;
  font-size: 120%;
  word-spacing: 4px;
  letter-spacing: 1px;
  text-align:center;
}

.event-name p {
    color: #fff;
    font-size: 150%;
}

.welcome-text p {
  width: 70%;
  line-height: 1.5;
  text-align: justify;
  margin: auto;
}

.forward-link {
  color:red;
  line-height: 1.5;
  text-align: center; 
  font-size: 120%;
  font-weight: 600; 
  width: 50%; 
  margin:auto; 
  border-style: solid;
  border-width: 2px; 
  border-color: red;
  padding: 10px;
}

/* -------------------------------------------------*/
/* GENERIC LINKS */
/* -------------------------------------------------*/

a:link,
a:visited {
  color: #007de8;
  text-decoration: none;
  padding-bottom: 1px;
  border-bottom: 1px solid #007de8;
  -webkit-transition: border-bottom 0.2s, color 0.2s;
  transition: border-bottom 0.2s, color 0.2s;
}

a:hover,
a:active {
  color: #555;
  border-bottom: 1px solid transparent;    
}

/* -------------------------------------------------*/
/* HOTEL INFO */
/* -------------------------------------------------*/

.hotel-info {
  border-radius: 25px;
  font-weight: 400;
  width: 45%;
  
  background-color:rgb(226, 226, 226);
  margin: auto;
}

.hotel-city {
  text-align: center;
  font-size: 150%;
  font-weight: 400;
}

.hotel-info img {
  width: 300px;
  height: 300px;
  float: left;
  padding: 55px 15px 15px 15px;
  object-fit:cover;
  
}

.hotel-location {
  line-height: 2;
  padding: 60px 0;
  Color:Black;
}





/* -------------------------------------------------*/
/* FOOTER */
/* -------------------------------------------------*/

footer {
  background-color: #FFF;
  width: 100%;
  padding: 50px;
  font-size: 80%;
  color: #ffffff;
  align-items:center;
}

footer p {
  color: #050505;
  text-align: center;
  margin-top: 20px;
}

footer img {
  display: block;
  margin: auto;
  width: 20%;
 
}

