body {
  margin: 0;
  padding: 0;
  border: 0;
  font-family: 'Quicksand', sans-serif;
  background-image: url(../images/home/tlo.jpg);
  background-size: cover;
  background-attachment: fixed;
  height: 100vh;
}

/*titlelink*/
.titlelink {
  text-decoration: none;
  color: #fff;
}

.titlelink:hover {
  text-decoration: none;
  color: #fff;
}

/* preloader */
#preloader {
  background-color: #232D39;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 350ms ease;
}

.dot {
  width: 20px;
  height: 20px;
  margin: 0 10px;
  border: 4px solid #fff;
  border-radius: 50%;
  animation: show 1s ease infinite;
}

.dot:nth-child(2) {
  animation-delay: 300ms;
}

.dot:nth-child(3) {
  animation-delay: 600ms;
}

@keyframes show {
  0% {
    transform: scale(0);
  }

  50% {
    transform: scale(1);
    opacity: 1
  }

  100% {
    opacity: 0;
  }
}

#preloader.preloader-hiding {
  opacity: 0;
}

#preloader.preloader-hidden {
  display: none;
}

/* navbar */
#navbar {
  background-color: #222C38;
  height: 70px;
  z-index: 3;
  position: fixed;
}

.logo-navbar>img {
  float: left;
  height: 50px;
  width: 50px;
  padding: 0;
  margin: 0;
}

/* menu RWD */
#panel {
  display: none;
  width: 300px;
  height: 100%;
  background-color: #222C38;
  color: #fff;
  position: fixed;
  overflow-y: auto;
  z-index: 1001;
  top: 0;
  right: -310px;
  text-align: center;
}

#panel>ul {
  text-align: center;
  font-size: 20px;
  margin-left: -5px;
}

#panel>ul>li {
  list-style-type: none;
  padding-top: 5px;
  padding-bottom: 5px;
  margin-left: -30px;
}

#panel>ul>hr {
  width: 150%;
  background-color: #fff;
  margin-left: -40px;
}

#button-hide-panel {
  display: block;
  padding: 5px;
  font-size: 40px;
}

#button-hide-panel:hover {
  cursor: pointer;
}

#button-show-panel {
  font-size: 40px;
  text-align: center;
  width: 100%;
  height: 40px;
}

.news-title {
  padding-top: 15vh;
  text-shadow: 2px 3px #808080;
  position: relative;
  top: 45px;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, 0%);
  width: 80%;
}

.logo {
  position: fixed;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
}

.logo>img {
  width: 50vh;
  height: 50vh;
}

.article {
  margin-top: 50px;;
  height: 200%;
  width: 20vw;
  margin-left: 10vw;
  border-right: 2px solid black;
  float: left;
}

.all {
  margin-top: 60px;
  float: none;
}
