/*
 * Custom CSS
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');


:root {
  --bs-body-bg: var(--bs-gray-100);
}

* {
  box-sizing: border-box;
}

body {
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
  background: linear-gradient(to bottom right, #ad62b8,#1F325E 70%);
  background-size: cover;
  background-attachment: fixed;
  font-family: Inter;
}

a {
  text-decoration: none;
  color: white;
  margin-left: 3px;
  padding: 1px 3px;
  border-radius: 3px;
}

a:hover {
  /* color: lightblue; */
  /* padding-right: 5px;
  padding-left: 0px; */
  background-color: #A8529F;
}

body>div {
  width: 100vw;
  height: 100vh;
}

.dateSpan {
  color: white;
  font-weight: 300;
  font-size: 1.2rem;
  position: relative;
  top: -40px;
  transform: translateX(-100%);
}





#lineCont {
  width: 100%;
  height: 20%;
}

#line {
  height: 4px;
  width: 100%;
  /* background: rgba(255, 255, 255, 0.557); */
  background: linear-gradient(90deg, #3361AC, #A8529F);
  border-radius: 5px;
  margin: auto;
  top: 50%;
  transform: translateY(-50%);
  position: relative;
}



#infoSpan {
  display: block;
  width: 95%;
  margin: auto;
  margin-top: 70px;
  text-align: center;
  color: white;
  font-size: 1.3rem;
}

.circle {
  width: 20px;
  height: 20px;
  background: #A8529F;
  border-radius: 15px;
  position: absolute;
  top: -7px;
  border: 2px solid #A8529F;
  /* cursor: pointer; */
  &:before {
    content: '';
    width: 10px;
    height: 10px;
    background: white;
    position: absolute;
    border-radius: 100%;
    top: 2px;
    left: 2px;
    display: none;
  }
  
}

