  @import url('https://fonts.googleapis.com/css2?family=Lobster&family=Luckiest+Guy&family=Monoton&family=Poppins&display=swap');

body,html
{
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    font-family: 'Poppins', sans-serif;
    background-color: #211f60;


}
*
{
    box-sizing: border-box;
}
.Funspace
{
    width: 100%;
    height: 75%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3%;
}

.Funspace-logo
{
  width: 75%;
}

.Funspace-gallery{
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.Funspace-about-title,.Funspace-gallery-title
{
  color:white;
  border: 5px solid white;
  text-align: center;
  font-size: 20px;
  
}
.Funspace-about-content
{
  padding: 1.5%;
  color: white;
}
.Funspace-gallery-img
{
  width: 100%;
  height: 100%;
  padding: 1%;
  display: flex;
  justify-content: center;
  z-index: 1;
  
}
.Funspace-gallery-img img 
{
    width: 90%;
    height: 100%;
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}


@media only screen and (max-width:768px)
{
  .Funspace
  {
    width: 100%;
    height: 50%;
  }

.Funspace-logo
{
  width: 90%;
  height: 90%;
}
.Funspace-about-content
{
  padding: 2%;
}
  .Funspace-gallery-img img 
{
    width: 100%;
    height: 100%;
}
}