@import url("https://fonts.googleapis.com/css?family=Heebo:900");

body {
  font-family: "Heebo", sans-serif;
  background-color: aqua;
}

/* CSS for  the scrollable pages */
.sec0 {
  background-color: aqua !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sec1 {
  background-color: aqua !important;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sec2 {
  background-color: aqua !important;
}

/* CSS for text flipping */
.flip-container>p {
  margin: 0;
  padding: 0;
  font-size: 7rem;
  line-height: 1;
  letter-spacing: 0.3rem;
  color: #253057;
}

.flip-container>p.desc {
  padding: 1rem;
  font-size: 1rem;
  letter-spacing: 0.2rem;
  opacity: 0;
  transition: 2s 1.5s;
}

.ex1 {
  opacity: 0;
  perspective: 200px;
}

.ex1 span {
  transform: rotateY(-90deg);
  opacity: 0;
}

.ex2 {
  opacity: 0;
  perspective: 200px;
}

.ex2 span {
  transform: rotateY(-90deg) rotateX(45deg);
  transform-origin: -50% 75%;
  opacity: 0;
}

/* Inforamion columns */
#text-container {
  background-color: white;
  display: flex;
  margin: 10px;
  border-width: 2px;
  border-style: solid;
  border-color: black;
  border-radius: 16px;
}

.desc1 {
  margin: 15px;
}

h2,
h3 {
  margin: 20px;
}



code {
  float: left;
  padding: 10px;
  margin: 10px;
  color: whitesmoke;
  background-color: black;
  border-width: 2px;
  border-style: solid;
  border-color: black;
  border-radius: 16px;
}


/* Image gallery CSS */
#catsHeading {
  text-align: center;
  padding-top: 30px;
}

#catsParagraph {
  text-align: center;
}

.images {
  background-color: white;
  margin: 75px;
  display: flex;
  justify-content: space-evenly;
  border-width: 2px;
  border-style: solid;
  border-color: black;
  border-radius: 16px;
}

.images img {
  justify-content: space-evenly;
  display: flex;
  margin: 20px;
  border-width: 2px;
  border-style: solid;
  border-color: black;
  border-radius: 16px;
}