


@import url('https://fonts.googleapis.com/css2?family=Varela+Round&display=swap');

body{
  background: rgb(255, 255, 255);;
  font-family: "varela round";
  height: 100%;
  width: 100%;
  padding: 0!important;
  margin: 0;
  box-sizing: border-box;
  
  

}


.wrap{
  height: 100vh;
  width: 100%;
  display: grid;
  grid-template-rows: auto;
  grid-gap: 30px 10px;
  grid-template-columns: auto;
  justify-items: center;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;


}


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

.container{
  height: auto;
  width: auto;
  /*border: 1px solid green;*/
  display: flex;
  gap: 50px;
  align-items: center;
  position: relative;
}

.container:after{
  content: "";
  position: absolute;
  height: 10px;
  width: 10px;
  background: white;
  top: 0;
  right: 0;
  border-radius: 50%;
  animation: blink 6s infinite;
}

.container:before{
  content: "Updates ever 5 minutes.";
  position: absolute;
  height: auto;
  width: width;
  background: white;
  top: -40px;
  right: 0px;
  border-radius: 5px;
  color: #555;
  display: none;
}

.container:hover:before{
  display: block;
}


@keyframes blink{
  50%{
    background: red;
  }
}

.info-container{
  height: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow-wrap: anywhere;
  
}




.name-elem{
  height: auto;
  width: auto;
  overflow: hidden;
  font-size: 26px;
}
.sub-elem{
  height: auto;
  width: auto;
  font-weight: bold;
  font-size: 45px;
}

.icon-elem{
  opacity: 1;
  border-radius: 50%;
  height: 125px;
  width: 125px;
}

/*footer:*/


.to-checkout{
  width: auto;
  height: auto;
}

.checkout-flex{
  height: auto;
  width: 200px;
  display: flex;
  flex-direction: column;
  


}

.checkout-flex a img, .checkout-flex a span{
  display: block;
  
}

.checkout-flex-span{
  height: 50px;
  line-height: 50px;
}
.checkout-flex a{
  display: flex;
  height: 50px;
  align-items: center;
  gap: 18px;
  text-decoration: none;
  color: white;
}

a span{
  padding-left: 5px;
}






/* loader */

