@font-face {
  font-family: 'Candara';
  src: url('../fonts/Candara/Candara.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}


.background-tint{
    background: black;
    /*opacity: 0.7;*/
    background-color: rgba(0, 0, 0, 0.8); /* semi-transparent black */
    width: 100%;
    height: 100%;
    display: inline-block;
    position: absolute;
}



.logo{
    position: fixed;
    top: 50px;
}

.logo img{
    height: 200px;
}



.date-time{
    position: fixed;
    left: 50px;
    color: white;
    top: 50px;
    font-size: 30px;
    font-family: Candara;
}


.date-time .date{
    font-size: 30px;
}

.date-time .time{
    font-size: 50px;
}




.room-no{
    font-size: 30px;
    /*
    position: fixed;
    top: 50px;
    right: 50px;
    color: white;
    font-size: 30px;
    font-family: Candara;*/
}





.content{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f4f4f4;
    overflow: hidden;
    background-image: url('../img/background/venue.jpg');
    background-size: cover;
    width: 100%;
}


.loader {
  position: fixed;
  z-index: 9999;
  background: black;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}


.spinner {
  border: 8px solid #f3f3f3;
  border-top: 8px solid #3498db;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
}


@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}



.weather{
    position: fixed;
    top: 50px;
    right: 50px;
    color: white;
    font-family: Candara;
}

.weather .weather-icon{
    height: 70px;
}

.weather .temperature{
    font-size: 40px;
}

.weather .weather-string{
    font-size: 30px;
}

