@import url("https://fonts.googleapis.com/css2?family=Michroma&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  color: #fff;
  background: #111;
  font-family: "Michroma", sans-serif;
  font-family: 'Poppins',sans-serif;
  height: 100vh;
  overflow: hidden;
}
.container{
	position: absolute;
    width: 100%;
    min-height: 100vh;
    pointer-events: none;
}

.container section{
	position: absolute;
	width: 90%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
    text-align: center;
    pointer-events: none;
}

.textBox h1{
    font-size: 2.8em;
}

.textBox h1 span{
    color: #3CFBFF;
}

.textBox p{
    font-size: 1.2em;
}

.textBox .homeBtn{
    font-family: 'Poppins';
    padding: 8px 18px;
    margin: 24px 12px;
    font-size: 26px;
    background-color: transparent;
    color: var(--i);
    outline: none;
    border: 3px solid var(--i);
    border-radius: 4px;
    cursor: pointer;
    pointer-events: all;
    transition: .3s;
    font-weight: 600;
}

.textBox .homeBtn:hover{
    background-color: var(--i);
    color: #000;
}

.loading-page {
  position: absolute;
  top: 0;
  left: 0;
  /*background: linear-gradient(to right, #2c5364, #203a43, #0f2027);*/
  background: #110031;

  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
  color: #191654;
}

#svg {
  height: 50%;
  width: 50%;
  stroke: #3CFBFF;
  fill-opacity: 0;
  stroke-width: 8px;
  stroke-dasharray: 4500;
  animation: draw 8s ease;
}

@keyframes draw {
  0% {
    stroke-dashoffset: 4500;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

.name-container {
  overflow: hidden;
}

.logo-name {
  color: #fff;
  font-size: 30px;
  letter-spacing: 8px;
  text-transform: uppercase;
  font-weight: bolder;
}
@media (max-width: 768px) {
    .textBox h1{
        font-size: 1.8em;
    }
}
@media (max-width: 480px) {
    .textBox h1{
        font-size: 1.2em;
    }
    .textBox p{
        font-size: 1em;
    }
    .textBox .homeBtn{
        padding: 6px 12px;
        font-size: 18px;
    }
    .logo-name {
		font-size: 24px;
	}
}