@import url("https://fonts.googleapis.com/css2?family=Kodchasan:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&display=swap");
* {
  margin: 0;
  padding: 0;
}
body {
  background-image: url(../Assets/Background.svg);
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

section {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

#hero {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}
#hero h1 {
  color: #fff;
  text-shadow: 6px 6px 7px #6f2dbb;
  font-family: Kodchasan;
  font-size: 80px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

#hero .layout {
  display: flex;
  justify-content: space-evenly;
  width: 100vw;
}
#hero .layout .dashboard {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  width: fit-content;
  height: fit-content;
}
#hero .layout .dashboard img {
  position: absolute;
  z-index: 1;
}
#hero .layout .dashboard form {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

#hero .layout .dashboard .buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 2;
  position: relative;
}
#hero .layout .dashboard .buttons #submit {
  width: 78px;
  height: 51.866px;
  flex-shrink: 0;
  border-radius: 13px 0px 0px 0px;
  background: #4b2273;
  box-shadow: 1px 1px 9px 0px rgba(0, 0, 0, 0.22);
  text-decoration: none;
  outline: none;
  color: #fff;
  font-family: Kodchasan;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  position: relative;
  cursor: pointer;
}
#hero .layout .dashboard .buttons #submit::before {
  content: "";
  width: 78px;
  height: 5.629px;
  flex-shrink: 0;
  position: absolute;
  bottom: 0;
  right: 0;
  background: #7541b3;
  opacity: 0;
}
#hero .layout .dashboard .buttons #submit::-moz-focus-inner {
  border: 0; /* Removes the inner border for Firefox */
}

#hero .layout .dashboard .buttons #submit:focus {
  outline: none; /* Ensure no outline on focus */
  box-shadow: none; /* Ensure no shadow or other effects */
  border: 0;
}
#hero .layout .dashboard .buttons #submit:hover::before,
#hero .layout .dashboard .buttons #resetButton:hover img {
  opacity: 1;
}

#hero .layout .dashboard .buttons #resetButton {
  width: 78px;
  height: 51.866px;
  flex-shrink: 0;
  border-radius: 0px 0px 0px 13px;
  background: #4b2273;
  box-shadow: 1px 1px 9px 0px rgba(0, 0, 0, 0.22);
  text-decoration: none;
  outline: none;
  color: #fff;
  font-family: Kodchasan;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  position: relative;
  cursor: pointer;
}
#hero .layout .dashboard .buttons #resetButton img {
  position: absolute;
  right: -11px;
  bottom: -11px;
  opacity: 0;
}
#hero .layout .dashboard .radioChoose {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  color: #fff;
  font-family: Kodchasan;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

#hero .layout .overview,
#hero .Summary,
#hero .layout .rendering {
  height: 35rem;
  width: 35rem;
  border-radius: 20px;
  border: 2px solid #9666d0;
  background: radial-gradient(
    41.59% 41.56% at 50% 50%,
    #632aa4 0%,
    #411f62 100%
  );
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
}

#hero .Summary {
  height: fit-content;
  width: 10rem;
  color: #fff;
  font-family: Kodchasan;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 1rem;
  position: absolute;
  top: 12rem;
  right: 1rem;
  display: none;
  justify-content: center;
  align-items: center;
}
#hero .layout .overview {
  flex-direction: column;
  height: fit-content;
  width: 30rem;
  color: #fff;
  font-family: Kodchasan;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 1rem;
  position: absolute;
  bottom: 3rem;
  left: 9rem;
}

#hero .layout .overview .heading,
.overlay .heading {
  font-size: 20px;
  font-weight: bold;
}

.overlay {
  height: 100vh;
  width: 100vw;
  background-color: black;
  color: #fff;
  font-family: Kodchasan;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  position: absolute;
  z-index: 4;
  padding: 1rem;
  display: none;
  overflow: hidden;
}
.overlay .color {
  color: #9666d0;
}
