@import url('https://fonts.googleapis.com/css2?family=MuseoModerno:wght@400;700&display=swap');

body {
  font-family: 'MuseoModerno', sans-serif;
}
body{
    background-color: white;
    height: 100vh;
    margin: 0;
    padding: 0;
}
#header{
  height: 7vh;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.4);
 background: rgb(250,250,250);
background: linear-gradient(90deg, rgba(250,250,250,1) 0%, rgba(228,228,228,1) 100%); 
  display: flex;
  align-items: center;
}
#header img{
  height: 6vh;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 1vw;
  float: left;
  display: flex;

}
h1{
    text-align: center;
    width: 100vw;
    height: 7vh;
    display: flex;
    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    font-family: MuseoModerno;
    font-size: 4vw;
    margin-top: auto;
    position: absolute;
}





/* IMAGES */
.container {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 50px auto;
  perspective: 1000px;
}

.image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.8s ease;
}

.image:hover {
  transform: rotateY(180deg);
}

.face {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
}

.front {
  background-image: url("../assets/image.jpg");
  background-size: cover;
}

.back {
  background-color: #4CAF50;
  transform: rotateY(180deg);
}

.front2 {
  background-image: url("../assets/image2.jpg");
  background-size: cover;
}