/* v0.1 

- 

*/

body, html {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 700;
  font-style: normal;
  height: 100%;
  margin: 0;
  padding: 0;
  background-color: #0f0f0f;
  line-height: 1;
}

a {
  cursor: pointer;
}

header {
  z-index: 999999;
  position: fixed;
  height: 50px;
  width: calc(100% - 170px);
  padding-left: 40px;
  padding-right: 130px;
  background-color: #f0f0f0;
  color: #0f0f0f;
  display: flex;
  align-items: center;
  gap: 20px;
  overflow-x: scroll;
  font-size: 12px;
  white-space: nowrap;
}

header::-webkit-scrollbar {
  display: none;
}

header a:hover {
  opacity: 0.5;
  transition: 0.25s ease-in-out;
}

@media (max-width: 1280px) {
  header {
    width: calc(100% - 90px);
    padding-left: 20px;
    padding-right: 70px;
  }
}

.close-button {
  position: fixed;
  right: 20px;
  width: 50px;
  height: 50px;
  outline: none;
  border: none;
  background-color: #f0f0f0;
  cursor: pointer;
}

.close-button:hover {
  opacity: 0.5;
  transition: 0.25s ease-in-out;
}

@media (max-width: 1280px) {
  .close-button {
    right: 0px;
  }
}

main {
  position: absolute;
  top: 50px;
  width: calc(100% - 80px);
  height: calc(100% - 130px);
  background-size: cover;
  background-position: center;
  padding: 40px;
  color: #0f0f0f;
}

@media (max-width: 1280px) {
  main {
    width: calc(100% - 40px);
    height: calc(100% - 90px);
    padding: 20px;
  }
}

.top {
  display: flex;
  justify-content: space-between; 
  align-items: flex-end;
}

.subscribe-button {
  height: 28px;
  width: 90px;
  border-radius: 16px;
  background-color: transparent;
  border: 2px solid #f0f0f0;
  align-items: center;
  display: flex;
  justify-content: center;
  font-size: 16px;
}

.subscribe-button a {
  margin: 0;
  padding: 0;
  text-decoration: none;
  color: #f0f0f0;
}

.subscribe-button:hover {
  transition: 0.25s ease-in-out;
  transform: scale(1.05);
}

.content {
  color: #f0f0f0;
  position: absolute;
  padding-top: 160px;
  padding-bottom: 80px;
  width: 450px;
  left: calc(50% - 225px);
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (max-width: 1280px) {
  .content {
    padding-top: 80px;
    padding-bottom: 40px;
    width: 320px;
    left: calc(50% - 160px);
  }
}

.content a {
  text-decoration: none;
}

.title {
  font-family: "Moul", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 284px;
  word-break: break-all;
  letter-spacing: -5px;
  line-height: 0.85;
  padding-top: 15px;
  background-image: url('img/backgrounds/background_classy.jpg');
  background-size: cover;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}

@media (max-width: 1280px) {
  .title {
    font-size: 212px;
  }
}

.subtitle {
  font-family: "Jomolhari", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 22px;
}

@media (max-width: 1280px) {
  .subtitle {
    font-size: 16px;
  }
}

.submit-button {
  height: 45px;
  border: 1px solid #f0f0f0;
  background-color: #f0f0f0;
  align-items: center;
  display: flex;
  justify-content: center;
  color: #0f0f0f;
  font-size: 16px;
}

.submit-button:hover {
  background-color: #0f0f0f;
  border: 1px solid #f0f0f0;
  color: #f0f0f0;
  transition: 0.25s ease-in-out;
  cursor: pointer;
}

.info {
  font-size: 12px;
  font-weight: 100;
}

.text {
  width: calc(50% + 80px);
  padding: 40px;
  margin-left: auto;
  margin-right: auto;
  font-size: 12px;
  color: #0f0f0f;
}

.text table, tr, td {
  border: 1px solid;
  border-collapse: collapse;
}

.text p, h6, h5 {
  margin: 0;
  padding: 0;
}

.text p {
   font-size: 16px;
}

.text h6 {
  font-size: 21.32px;
}

.text h5 {
  font-size: 28.42px;
}

@media (max-width: 1280px) {
  .text {
    width: calc(100% - 40px);
    padding: 20px;
  }
}

.note {
  width: 100%;
  height: 100%;
  position: fixed;
  display: flex;
  justify-content: center;
  top: 50%;
  font-size: 16px;
  color: #0f0f0f;
  animation: flicker 5s infinite;
}

@keyframes flicker {
  0%, 25%, 75%, 100% { opacity: 1; }
  50% { opacity: 0;}
}