/* https://coolors.co/palette/dabfff-907ad6-4f518c-2c2a4a */
body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #FFFFFF;
  color: #000000;
}

.container {
  width: 80%;
  margin: 0 auto;
}

header {
  padding: 20px 0;
  text-align: center;
  color: #907AD6;
}

header h1 {
  color: #907AD6;
  margin: 0;
}

header p {
  margin: 5px 0;
}

section {
  padding: 40px 0;
}

footer {
  padding: 10px 0;
  text-align: center;
}

footer p{
  padding: 10px 0;
  text-align: center;
}

.header_text {
  font-family: "DM Serif Text", serif;
  font-optical-sizing: auto;
  font-style: normal;   /* Remove top spacing */
}

#home_title
{
  color: #4F518C;
  font-size: 100px;
  margin-bottom: 0;
  line-height: 1;
  opacity: 0;
  transform: translateY(30px);
  animation: title-slide-in 2s cubic-bezier(.22,.61,.36,1) .15s forwards;
  will-change: transform, opacity;
}

@keyframes title-slide-in
{
  to {
    opacity: 1;
    transform: translateY(0);}
}

#home_subtitle
{
  color: #907AD6;
  font-size: 50px;
  margin-top: -20px;
  margin-bottom: -10px;
  margin-left: 125px;
  transform: translateX(30px);
  animation: title-slide-in-two 2s cubic-bezier(.22,.61,.36,1) .15s forwards;
  will-change: transform, opacity;
}

@keyframes title-slide-in-two
{
  to {
    opacity: 1;
    transform: translateX(0);}
}

#home_subtitle_two
{
  color: #907AD6;
  font-size: 30px;
  margin-bottom: -10px;
  line-height: 1;
  font-style: italic;
}

.footer
{
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  text-align: center;
}

/* Add a black background color to the top navigation */
.topnav {
  overflow: hidden;
}

/* Style the links inside the navigation bar */
.topnav a {
  float: right;
  display: block;
  color: #FFFFFF;
  text-align: center;
  padding: 14px 16px;
  margin-left: 10px;
  text-decoration: none;
  font-size: 17px;
  border-radius: 8px; /* Rounds the corners */
  transition: background-color 0.2s ease; /* Smooth transition */
  background-color: #907AD6;
}

/* Change the color of links on hover */
.topnav a:hover {
  background-color: #4F518C;
  color: #FFFFFF;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2); /* Adds a subtle shadow */
}

/* Hide the link that should open and close the topnav on small screens */
.topnav .icon {
  display: none;
}

#freequote
{
  font-style: italic;
}


.center-container{
  display: flex
}

.about-container, .image-container{
  flex:1;
  padding: 150px;
}

.about-container{
  font-size:20px;
}

.image-container{
  align-items: center;
}

.image-container > img{
  border-radius: 30px;
  border: solid 30px #907AD6
}





/* When the screen is less than 600 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */
@media screen and (max-width: 600px) {
  .topnav a:not(:first-child) {
    display: none;
  }

  .topnav a.icon {
    float: right;
    display: block;
  }
}

/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
@media screen and (max-width: 600px) {
  .topnav.responsive {
    position: relative;
  }

  .topnav.responsive a.icon {
    position: absolute;
    right: 0;
    top: 0;
  }

  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}

@media screen and (max-width: 600px) {
  .about-container
  {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 40px;
  }
  #home_title
  {
    font-size: 40px;
  }
  #home_subtitle
  {
    font-size: 30px;
    margin-top: 10px;
  }
}