*{

    margin: 0;
    padding: 0;



}



html,body{

    height: 100%
}


body{
    
    min-height: 100dvh;

    display: grid;

    place-items: center;

    overflow-x: hidden;



}


.box_set{

  display: flex;                 /* was inline-flex; block is fine too */
  flex-direction: column;
  align-items: center;           /* center children horizontally */
  gap: 2rem;


  width: min(700px,92 vw);
  margin: 0 auto;

  padding: clamp(1rem,4vw,2.5rem);               /* avoid huge 250px padding */
  background-color: whitesmoke;
  border: 2px  black;      /* use shorthand for border */
  border-radius: 1rem;
  max-width: 90vw;

}


.figure_logo{

  margin: 25px;
  padding: 25px;

  width: 250px;
  height: 250px;
  border-radius: 50%;
  background-image: url(images/Untitled-1.gif);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;

  animation: rotating_logo 10s linear infinite;


}

@keyframes rotating_logo{


   to {transform: rotate(360deg);}

}

.logo_image{
  width: 500px;
  max-width: 80vw;               /* responsive */
  height: auto;
}


p{


    font-size: 24px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    text-align: center;

}


h1{
    text-align: center;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}