/* Generals */
body {
  /* vars */
  --color-background: #ea9ab2;
  --color-buttons: #e687a4;
  --input-boxes: #ffffff;
  /* Font Vars */
  --double-dots-font: "Source Code Pro", monospace;


  background: linear-gradient(to right, var(--color-background), rgb(235, 118, 153));
  overflow: hidden;
}

::selection {
  background-color: none;
}

.no_select {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

/* Video Background */
#video_background {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  z-index: -1;
}

/* Center Limit Box */
#container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;

  height: 98vh;
  width: 98vw;
}

#main_box {
  /* background-color: rgba(0, 0, 255, 0.144); */
  height: auto;
  width: 60vw;
}

#center_box {
  display: flex;
  margin: 0 auto;
  margin-top: 10vh;
  justify-content: center;
  align-items: center;

  height: 15rem;
  width: auto;
  /* background-color: rgba(0, 255, 255, 0.329); */

  transition: 0.5s;
}

.time_input {
  background-color: white;
  height: 15vh;
  width: 150px;
  outline: none;
  border: none;
  border-radius: 45px;
  margin-left: 10px;

  font-size: 10vh;
  text-align: center;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.2);
  max-height: 12rem;
}

#double_dot {
  font-size: 15vh;
  font-family: var(--double-dots-font);
  font-weight: 500;
  font-optical-sizing: auto;
}

/* Submit Button */
#submit {
  height: 3rem;
  width: 9.5rem;

  font-family: var(--double-dots-font);
  font-weight: 900;
  font-size: 1.25rem;

  border: 2px solid transparent;
  box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.2), 0 4px 6px rgba(0, 0, 0, 0.1);

  background-color: #e687a4;
  border-radius: 50px;
  cursor: pointer;

  transition: 0.3s ease;
  color: white;
  border-color: rgba(255, 255, 255, 0.2);
}

#submit:hover {
  box-shadow: 4px 4px 7px rgba(0, 0, 0, 0.25), 0 5px 8px rgba(0, 0, 0, 0.15);
}

#submit:active {
  transform: scale(0.95);
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2), 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Countdown System */
#countdown_system {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: auto;
  display: none;
}
#item_display {
  font-family: "Special Gothic Expanded One", sans-serif;
  font-size: 4rem;
  font-weight: 800;
  color: white;
  text-shadow: 2px 2px 3px rgba(54, 54, 54, 0.199);
}

/* Break System */
#break_text {
  opacity: 0;
  font-family: "Caprasimo", serif;
  color: white;
  font-size: 2rem;
  backdrop-filter: blur(20px);
  border-radius: 15px;
  text-shadow: 1px 1px 2px rgba(94, 93, 93, 0.26);
}

/* Group Submit (Genre,Submit,Fullscreen) */
#group_submit {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

#box_submit {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background-color: rgb(54, 54, 54);
  border-radius: 50px;
  padding: 10px;
}

/* Fullscreen Button */
.button {
  opacity: 1;
  cursor: pointer;
  transition: 0.3s all;
  height: 2rem;
}

.button:hover {
  transform: scale(1.1);
}

/* Preset Box */
#preset_box {
  position: absolute;
  height: auto;
  width: auto;
  bottom: 4px;
  border-radius: 10px;
  background-color: rgba(128, 128, 128, 0.137);

  display: flex;
  align-items: center;
  flex-direction: row;
  padding: 5px;
  backdrop-filter: blur(50px);
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  transition: 1s all;
}

.preset_time {
  padding: 5px;
  border-radius: 5px;
  margin-right: 2px;
  cursor: pointer;

  border: 2px rgba(34, 34, 34, 0.397) solid;
  background-color: transparent;
  backdrop-filter: blur(10px);

  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: white;
  transition: 0.2s all;
}

.preset_time:hover {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

/* Ad Sector */
#ad_sector {
  position: absolute;
  display: flex;
  justify-content: center;
  left: 50%;
  transform: translate(-50%);
}

#ad_box {
  background-color: rgba(128, 128, 128, 0.137);
  border: 2px rgba(34, 34, 34, 0.397) solid;
  border-radius: 10px;
  height: 100px;
  width: 740px;
  display: flex;
  align-items: center;
  justify-content: center;
}
