/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

  body {
    background-color: #aadbd4;
    color: black;
    font-family: ui-monospace, 'Cascadia Code', 'Source Code Pro', Menlo, Consolas, 'DejaVu Sans Mono', monospace;
    font-weight: normal;
  }

 .xandor-header {
    width: 50%;
    margin: auto;
    padding: 20px;
  }

  .xandor-header p {
    font-size: 16px;
  }

  .xandor-header .title {
  	margin: auto;
  	display: flex;
  }

  .xandor-header p {
  	font-size: 1.3rem;
    display: flex;
    text-align: justify;
    line-height: 1.4em;
    word-break: break-word;
    font-weight: bold;
    margin-bottom: 5px;
  }

  @media only screen and (max-width: 700px){
    .xandor-header p {
      text-align: center;
    }
  }

  .xandor-header a {
  	font-size: 1.6rem;
    text-decoration: none;
  }

  .xandor-header h1 {
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  @media only screen and (max-width: 700px){
    .xandor-header h1 {
      text-align: center;
      flex-wrap: wrap;
      justify-content: center;
    }
  }

  .xandor-header h1 .title-div {
    display: flex;
    flex-direction: column;
  }

  .xandor-header h1 .title-text {
    margin-top: 8px;
    font-size: 2.5rem;
    text-align: center;
    text-wrap: balance;
  }

  .xandor-header .flex-div {
    display: flex;
    justify-content: center;
  }

  .xandor-header .flex-div img {
    max-height: 60px;
    margin-top: 0px;
    margin-right: 15px;
    border-radius: 25px;
    margin-left: -75px;
    align-self: center;
  }

  @media only screen and (max-width: 700px){
    .xandor-header .flex-div img {
      margin-left: 0px;
      margin-right: 0px;
    }
  }

  .xandor-header .blog-subheader-text {
    display: flex;
    margin-left: 10px;
    margin-right: 10px;
  }

  .xandor-body {
    width: 50%;
    margin: auto;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    margin-top: -20px;
  }

  .xandor-body .flex-div {
    display: flex;
    justify-content: center;
    margin-top: 25px;
  }

  .xandor-body .recipe-img {
    max-width: 75%;
    border-radius: 25px;
    max-height: 30em;
  }

  .xandor-body .recipe-img:hover {
    opacity: 0.7;
  }

  .xandor-body .blog-img {
    max-width: 75%;
    border-radius: 25px;
  }

  .xandor-body .blog-img:hover {
    opacity: 0.7;
  }

  .xandor-body a {
    border: 2px #799994 solid;
    border-radius: 20px;
    padding: 5px;
    padding-left: 20px;
    padding-right: 20px;
    color: black;
    text-decoration: none;
    max-width: fit-content;
    line-height: 1.75rem;
    display: flex;
    align-items: center;
    margin-right: 10px;
    min-width: 175px;
    justify-content: center;
    text-align: center;
  }

  .xandor-body a svg {
    margin-right: 5px;
  }

  .xandor-body a:hover {
    background-color: #98c5be;
  }

  .xandor-body ul {
    margin-top: -10px;
  }

  @media only screen and (max-width: 700px){
    .xandor-body ul {
      padding-left: 0px;
    }
  }

  .xandor-body li {
    margin-bottom: 10px;
    margin-top: 20px;
    align-items: center;
  }

  .xandor-body .link-item {
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 2em;
    gap: 1em;
  }

   @media only screen and (max-width: 700px){
    .xandor-body .link-item {
      flex-wrap: wrap;
      justify-content: center;
    }
  }

  .xandor-body .front-page-link a {
    max-width: 175px !important;
  }

  @media only screen and (max-width: 700px){
    .xandor-body a {
      min-width: 100px;
      font-size: 13px;
    }
  }

  .linkbox {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .linkbox a {
    display: flex;
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 10px;
    border: 2px #799994 solid;
    border-radius: 20px;
    padding: 5px;
    padding-left: 20px;
    padding-right: 20px;
    color: black;
    min-width: fit-content;
    align-content: center;
    text-align: center;
    align-items: center;
    max-width: 33%;
  }

  .xandor-footer.linkbox a {
    font-size: 1.6rem;
    text-decoration: none;
  }

  @media only screen and (max-width: 700px){
    .linkbox a {
      font-size: 17px;
      text-wrap: nowrap;
    }
  }

  .linkbox a:hover {
    background-color: #98c5be;
  }

  .bsky-link-icon {
    margin-top: 5px;
  }

  .xandor-body .inline-link {
    margin-left: unset;
    margin-right: unset;
    border: none;
    padding: 0px;
    border-radius: 0px;
    line-height: unset;
    display: inline-block;
    min-width: unset;
    text-decoration: underline;
  }

  .link-icon-ico {
    margin-right: 10px;
  }

  /* Img Modal (background) */
  .modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
  }

  /* Modal Content (Image) */
  .modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 80%;
    max-height: 80%;
    object-fit: scale-down;
  }

  /* Caption of Modal Image (Image Text) - Same Width as the Image */
  #caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
  }

  /* Modal Animation */
  .modal-content, #caption {
    animation-name: zoom;
    animation-duration: 0.6s;
  }

  @keyframes zoom {
    from {transform:scale(0)}
    to {transform:scale(1)}
  }

  /* Modal Close Button */
  .close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
  }

  .close:hover,
  .close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
  }

  @media only screen and (max-width: 700px){
    .modal-content {
      width: 100%;
    }
  }
    
 