<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('https://fonts.googleapis.com/css2?family=Montserrat&amp;display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat&amp;family=Source+Code+Pro:wght@300&amp;display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cinzel&amp;display=swap');

* {
  box-sizing: border-box;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: center; /* Added to center content */
  align-items: center; /* Added to center content */
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
  background-image: url(ripple.jpg);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}



h1, h2 {
  text-align: center;
  font-family: 'Cinzel', serif;
  color: rgb(255, 255, 255);
  text-shadow: black 1px 0px;
}

h1 {
  font-size: 4vw; /* Adjust as needed */
  margin: 20px 0; /* Increase margin */
}

h2 {
  font-size: 3vw; /* Adjust as needed */
  margin: 15px 0; /* Increase margin */
}

p {
  display: flex;
  flex-direction: column; /* Added */
  justify-content: center;
  align-items: center;
  font-size: 2.5vw; /* Adjust as needed */

  color: black;
  text-shadow: black 1px 0px;
  padding: 10px;
  margin: 5px 0;
  height: 100%;
}

.email-icon {
  display: block;
  margin: 0 auto; /* Center the image horizontally */
  max-width: 80px; /* Adjust the size as desired */
  transition: transform 0.2s ease-in-out; /* Add animation transition */
}

.email-icon:hover {
  transform: scale(1.1); /* Add scaling effect on hover */
}

.image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40vw; /* Adjust the width as desired */
  margin: 0 auto; /* Center the element horizontally */
  text-align: center;
}




@media screen and (max-width: 600px) {
  h1 {
    font-size: 4vw;
  }

  h2 {
    font-size: 3vw;
  }

  p {
    font-size: 3vw;
  }

  .email-icon {
    max-width: 50px;
  }
}

@media screen and (min-width: 601px) and (max-width: 900px) {
  h1 {
    font-size: 3vh;
  }

  h2 {
    font-size: 2.5vh;
  }

  p {
    font-size: 2vh;
  }

  .email-icon {
    max-width: 60px;
  }
}

@media screen and (min-width: 901px) and (max-width: 1200px) {
  h1 {
    font-size: 4vh;
  }

  h2 {
    font-size: 3vh;
  }

  p {
    font-size: 2.5vh;
  }

  .email-icon {
    max-width: 70px;
  }
}

@media screen and (min-width: 1201px) {
  h1 {
    font-size: 5vh;
  }

  h2 {
    font-size: 4vh;
  }

  p {
    font-size: 3vh;
  }

  .email-icon {
    max-width: 80px;
  }
}
</pre></body></html>