/* style.css for BlendVisions static site */

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

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

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

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

@font-face {
  font-family: 'Kanit';
  src: url('./Kanit/Kanit-BoldItalic.ttf') format('truetype');
  font-weight: bold;
  font-style: italic;
}

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

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

.bold {
  font-weight: bold;
}

.italic {
  font-style: italic;
}
.bold-italic {
  font-weight: bold;
  font-style: italic;
}


body {
  margin: 0;
  padding: 0;
  font-family: Kanit;
  font-weight: lighter;
  justify-content: center;
  align-items: center;
  color: white;
  vertical-align: top;
}


.background {
  z-index: 2;
  margin: 0;
  padding: 0;
  background-image: url('background.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
}

.overlay {
  opacity: 1;
  width: 100vw;
  height: 100vh;
  background-color: rgb(0, 0, 0);
  opacity: 0.17;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  z-index: 2;
  justify-content: center;
  align-items: center;
}

header {
  position: fixed;
  top: 5vh;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.logo {
  width: 45vw;
  max-width: 650px;
  min-width: 200px;
  height: auto;
  pointer-events: auto;
  margin-bottom: 1rem;
}

main {
  text-align: center;
}

.footer {
  position: absolute;
  bottom: 2vh;
  width: 95vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: 13px;
}

.footer-left, .footer-right {
  flex: 0 1 auto;
}

.footer-right {
  text-align: right;
}

.footer-left{
  text-align: left;
}

p {
  margin-top: 0;
  vertical-align: top;
  text-align: center;
  font-size: 19px;
}
a {
  color: inherit;
  font-weight: inherit;
  text-decoration: none;
}

@media (max-width: 800px) {
  .logo {
  width: 75vw;
  }
  .footer {
    flex-direction: column;
    align-items: grid;
    font-size: 10px;
  }

  .footer-right {
    text-align: center;
    margin-top: 0.5rem;
  }
  .footer-left{
    text-align: center;
  }
  p {
    font-size: 19px;
  }
}

