html,
body {
    margin: 0;
    height: 100%;
    /* align-content: center; */
    overflow-x: hidden;
    background-color: rgb(250, 242, 232);
}

.container-fluid {
    /* display: flex;  */
    justify-content: center; 
    border: 2px solid black;
    margin-top: 1%;
    height: 95%;
    width: 95%;
    padding: 0px;
    background-color: rgb(200, 241, 248);
    background-size: cover;
    
}
#hero{
    margin-bottom: 5%;
}
h1,
h2 {
    text-align: center;
    
    margin: 0px;
    font-size: clamp(3em, 6vw, 12em);
    text-shadow: 5px 5px 0 #000000, 10px 10px 0 #000000;
}

h3 {
    font-weight: 500;
    font-style: normal;
    height: auto;
    align-self: center;
    text-align: center;
    font-size: clamp(1em, 2vw, 6em);
}

p {
    
    font-weight: 200;
    font-style: normal;
    font-size: clamp(1em, 1vh, 2em);
    text-align: center;
    width: 50%;
    justify-self: center;
}

.col-1{
    max-width: 100%;
}
/* From Uiverse.io by barisdogansutcu */ 
button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 10px;
  color: white;
  text-shadow: 2px 2px rgb(116, 116, 116);
  text-transform: uppercase;
  cursor: pointer;
  border: solid 2px black;
  letter-spacing: 1px;
  font-weight: 600;
  font-size: 17px;
  background-color: hsl(49deg 98% 60%);
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
  justify-self: center;
}

button:active {
  transform: scale(0.9);
  transition: all 100ms ease;
}

button svg {
  transition: all 0.5s ease;
  z-index: 2;
}

.play {
  transition: all 0.5s ease;
  transition-delay: 300ms;
}

button:hover svg {
  transform: scale(3) translate(50%);
}

.now {
  position: absolute;
  left: 0;
  transform: translateX(-100%);
  transition: all 0.5s ease;
  z-index: 2;
}

button:hover .now {
  transform: translateX(10px);
  transition-delay: 300ms;
}

button:hover .play {
  transform: translateX(200%);
  transition-delay: 300ms;
}
