* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  background: #150941;
}

body {
  font-family: "Poppins", sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
}
.container {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.rect {
  transform-style: preserve-3d;
  min-height: 80vh;
  width: 35rem;
  border-radius: 30px;
  padding: 0rem 5rem;
  box-shadow: 0 20px 20px rgba(0, 0, 0, 0.2), 0px 0px 50px rgba(0, 0, 0, 0.2);
}

.logo {
  min-height: 35vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo img {
  width: 20rem;
  z-index: 2;
  transition: all 0.75s ease-out;
}
.circle {
  width: 15rem;
  height: 15rem;
  background: linear-gradient(
    to right,
    #80009B,
    #151515
  );
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}

.info h1 {
  font-size: 3rem;
  transition: all 0.75s ease-out;
  color: #00FF4E;
  font-weight: 600;
}
.info h3 {
  font-size: 1.3rem;
  padding: 2rem 0rem;
  color: #FFFFFF;
  font-weight: lighter;
  transition: all 0.75s ease-out;
}

.guardis {
  margin-top: 5rem;
  transition: all 0.75s ease-out;
}
.guardis button {
  width: 100%;
  padding: 1rem 0rem;
  background: #00FF4E;
  border: none;
  color: white;
  cursor: pointer;
  border-radius: 30px;
  font-weight: bolder;
}
