@font-face {
  font-family: "Comfortaa";
  src: url('../fonts/Comfortaa-Regular.ttf') format("truetype");
}
@font-face {
  font-family: "Kanit";
  src: url('../fonts/Kanit-Thin.ttf') format("truetype");
}

html {
  background:url('../images/background-8.png') no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
body
{
  margin:0px;
  padding:0px;
	font-family: 'Comfortaa', arial, serif;
  width: 100%;
  height: 100%;
	color:#fff;
	font-weight:300;
}
textarea:focus, input:focus{
    outline: none;
}
a {
  color: inherit;
  text-decoration: inherit;
}

.copyright {
  font-size: 12px;
  position: absolute;
  bottom: 5px;
  right: 10px;
}

.copyright > a {
  font-weight: bold;
  text-decoration: underline;
}

/* ITEM */
.container-items {
  /*position: absolute;
  top: 10px;
  left: 25%;
  margin: 0;*/
  text-align: center;
}
.item {
  position: relative;
  display: inline-block;
  color: #f5f5f5;
  font-size: 16px; 
  margin: 0 4px;
}
.link {
  position: relative;
  text-decoration: none;
  padding: 0 4px;
}
.link:after{
  content: '';
  position: absolute;
  width: 0; height: 1px;
  display: block;
  right: 0;
  background: #fff;
  transition: width .3s ease;
  -webkit-transition: width .3s ease;
}
.link:hover:after{
  width: 100%;
  left: 0;
  background: #fff;
}

/* WEATHER */
.weather-wrapper {
  position: absolute;
  right: 0;
  top: 0;
  width: 10%;
  height: 120px;
  /* float: right;
  position: relative;
  top: -45px;
  width: 8%;
  height: 120px; */
}
.weather-icon-temperature {
  height: 55%;
}
.weather-icon-temperature img {
  transform: scale(0.8);
}
.weather-temperature {
  position: relative;
  top: -25px;
  font-size: 30px;
}
.weather-place-description {
  height: 45%;
  text-align: center;
  font-size: 14px;
}

.date-time-search {
  /*position: absolute;
  top: 47%;
  right: 31%;
  text-align: center;
  width: 40%;*/
  margin: 25% auto 0 auto;
  text-align: center;
  width: 40%;
}
/* CLOCK */
.clock {
  position: relative;
  top: -25px;
  margin: 0;
  font-family: 'Kanit', arial, serif;
}
.clock h1 {
  display: inline-block;
  font-size: 108px;
  letter-spacing: 4px; 
  text-transform: uppercase;
  margin: 0;
}

/* DATE */
.date {
  position: relative;
  top: -45px;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}
.date-inner-text { float: left; height: 100%; }

/* GOOGLE SEARCH */
#search_bar {
  position: relative;
  top: -25px;
}
.search_input {
  color: #f5f5f5;
  font-size: 26px;
  letter-spacing: 1px;
  vertical-align:middle;
  width: 100%;
  height: 50px;
  border: none;
  border-bottom: #f5f5f5 1px solid;
  padding-left: 10px;
  background: none;
  text-align: center;
}
.search_input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #f5f5f5;
}
.search_input::-moz-placeholder { /* Firefox 19+ */
  color: #f5f5f5;
}
.search_input:-ms-input-placeholder { /* IE 10+ */
  color: #f5f5f5;
}
.search_input:-moz-placeholder { /* Firefox 18- */
  color: #f5f5f5;
}
