@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&family=Josefin+Sans:wght@400;500;600;700&family=Poppins:wght@400;500;600&display=swap');

html,
body {
  position: relative;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  height: 100vh;
  width: 100%;
  background-color: #FFFFFF;
  font-family: 'Poppins', sans-serif;
}

.center {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  flex-direction: column;
  /* margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%); */
}

.loader {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.loader .title {
  color: #000;
}

.classic-4 {
  padding-bottom: 5px;
  font-weight: bold;
  font-family: monospace;
  font-size: 30px;
  overflow: hidden;
  color: #0000;
  text-shadow: 0 0 0 #000, 10ch 0 0 #000;
  background: linear-gradient(#000 0 0) bottom left/0% 3px no-repeat;
  animation: c4 1.5s infinite;
}

.classic-4:before {
  content: "Loading...";
}

@keyframes c4 {
  80% {
    text-shadow: 0 0 0 #000, 10ch 0 0 #000;
    background-size: 100% 3px
  }

  100% {
    text-shadow: -10ch 0 0 #000, 0 0 0 #000
  }
}

/**/
/* body {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-auto-rows: 130px;
  place-items: center;
}

* {
  box-sizing: border-box;
} */

#logo {
  width: 350px;
  height: 200px;
}

@media screen and (max-width: 600px) {
  #logo {
    /* width: 250px; */
    /* height: 100%; */
    max-height: 100%;
    max-width: 100%;
  }
}

@media screen and (max-width: 400px) {
  #logo {
    /* width: 200px; */
    max-width: 100%;

    /* height: 100%; */
    max-height: 100%;
  }
}