.main_div * {
  -webkit-user-select: none; 
  -moz-user-select: none;   
  -ms-user-select: none;    
  user-select: none;        
  -webkit-user-drag: none;
  user-drag: none;
  pointer-events: none;
}

body {
  display: block;
  margin: 0;
  padding: 0;
}

.main_div {
    background-image: url("./assets/bg.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;

    width: 100vw;
    height: 100vh;
    padding: 32px;
    margin: 0;
    box-sizing: border-box;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.h1title {
    color: #e8caca;
    text-transform: uppercase;
    /* font-size: clamp(12px, 12vh, 100px); */
    font-size: clamp(24px, 10vw, 100px); 
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    margin: 32px;
    width: 100vw;
    max-width: 90vw;
    text-align: center;
}



.h2clock {
    color: #c79698;
    text-transform: uppercase;
    font-size: 30px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    width: clamp(30px, 5vw, 60px);
    text-align: center;
    font-size: clamp(15px, 5vw, 30px); 
}

.rawimg {
    height: 30%;
    aspect-ratio: 1;
}

.playimg {
    height: 40px;
    box-shadow: 0px 0px 10px black;
  pointer-events: all;
}

.emptybtn {
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  pointer-events: all;
}

.rawsvg path {
    fill: #c79698;
}

.rawsvg {
    height: 40px;
    aspect-ratio: 1;
}

#countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-direction: row;
}

/* NEWSLETTER */
.newsletterpopup {
  position: fixed;
  background-color: #0A0406;
  border-radius: 16px;
  /* width: 25%;
  height: 25%; */
  right: 8px;
  bottom: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  animation: newsletterAnim 1.6s ease-out forwards;
}

.newslettertitle {
  margin: 0;
  color: #E8CACA;
  font-family: Rubik, sans-serif;
  font-size: 16px;
}

.newslettersubtitle {
  margin: 0;
  color: #E8CACA;
  font-family: Rubik, sans-serif;
  font-size: 12px;
  opacity: 0.5;
}

.newsletterclosebutton {
  border: none;
  background: none;
  margin: 0;
  color: #E8CACA;
  font-family: Rubik, sans-serif;
  font-size: 12px;
  opacity: 0.3;
}

.newslettertop {
  display: flex;
  justify-content: space-between;
}

@keyframes newsletterAnim {
  from {
    opacity: 0;
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes newsletterHide {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(100%);
  }
}

.newsletterpopup.hide {
  animation: newsletterHide 0.5s ease-in forwards;
}

.failed_title {
 color: #ff6680; 
}

.success_title {
 color: #7ee38f; 
}


.email_input {
  font-family: inherit;
  font-size: 16px;
  /* border: #66ff7f35 solid 2px; */
  border: none;
  color: rgb(222, 191, 191);
  background-color: #2c141c;
  padding: 8px 12px;
  display: inline-flex;
  align-items: center;
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.2s;
  justify-content: space-between;
  gap: 0.7em;
  position: relative;
  font-family: Rubik, sans-serif;
}

.email_input:focus {
  /* border: #68d87b6b solid 2px; */
  outline: none;
}

.subform {
  display: flex;
  gap: 16px;
}

.submit_button {
  font-family: inherit;
  font-size: 16px;
  background: #F45C79;
  color: #0f0f0f;
  padding: 0.25em 1em;
  display: inline-flex;
  align-items: center;
  /* font-weight: bold; */
  border: none;
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.2s;
  /* cursor: pointer; */
  justify-content: space-between;
  gap: 0.7em;
  position: relative;
  /* width: 90%; */
  font-family: Rubik, sans-serif;
}

@media only screen and (max-width: 768px) {
  /* Phone size */

  .newsletterpopup {
    display: none;
  }
}