@import url("https://use.typekit.net/ozy6rdy.css");

@import "https://www.shannonkay.com/fontawesome/css/fontawesome.css";
@import "https://www.shannonkay.com/fontawesome/css/brands.css";
@import "https://www.shannonkay.com/fontawesome/css/solid.css";

:root,
::backdrop {
  /* Set sans-serif & mono fonts */
  --sans-font: -apple-system, BlinkMacSystemFont, "Avenir Next", Avenir,
    "Nimbus Sans L", Roboto, "Noto Sans", "Segoe UI", Arial, Helvetica,
    "Helvetica Neue", sans-serif;
  --mono-font: Consolas, Menlo, Monaco, "Andale Mono", "Ubuntu Mono", monospace;
  --standard-border-radius: 5px;

  /* Default (light) theme */
  --bg: #f9dee1;
  --accent-bg: #f7d3d6;
  --text: #212121;
  --text-light: #585858;
  --border: #f9c2cc;
  --accent: #fb6f92;
  --accent-hover: #FC8EAC;
  --accent-text: var(--bg);
  --code: #d81b60;
  --preformatted: #444;
  --marked: #ffdd33;
  --disabled: #efefef;
}
body {
   /*
    background: linear-gradient(to bottom, #f7d3d6, #FC8EAC);

    background: linear-gradient(to bottom, #f9dee1, #f7d3d6, #fab1c1, #FC8EAC, #fc7d99 );
   */
   background: linear-gradient(to bottom, #f9dee1, #f7d3d6, #fab1c1, #FC8EAC, #fc7d99 );
   text-align: center;
    font-family: "ivystyle-sans", Verdana, sans-serif;
    font-size: 1.1rem;
    min-height: 100vh;
    }
.gradient-bg {
  background: linear-gradient(to bottom, #ffffff, #f7d3d6, #FC8EAC);
}
i {
    
}

/*
h1   {
     text-align: center;
     font-size: 5vw;
     color: #FC8EAC;
}
*/

header img {
    max-width: 90%;
    max-height: 8rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 5pt;
    margin-top: 5pt;
}

h1 {
    background: linear-gradient(183deg, #f9c2cc 10%, #FC8EAC 70%);
background-clip: text;
-webkit-background-clip: text;
color: transparent;
    font-size: 5vw;
    margin-bottom: 10pt;
    
}

h1 a, h1 a:hover, h1 a:active, h1 a:visited {
    background: linear-gradient(183deg, #f9c2cc 10%, #FC8EAC 70%);
background-clip: text;
-webkit-background-clip: text;
color: transparent;
    font-size: 3rem;
    margin-bottom: 10pt;
    
}

h1 .project-header a, h1 .project-header a:hover, h1 .project-header a:active, h1 .project-header a:visited 
{
    background: linear-gradient(183deg, #f9c2cc 10%, #FC8EAC 70%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    font-size: 1rem;
    margin-bottom: 5pt;    
}

h2   {
     text-align: center;
     font-size: 2.25rem;
     color: #FC8EAC;
    margin-top: 1pt;
    margin-bottom: 5pt;
}

h3   {
    color: #fb6f92;
    margin-bottom: 0;
    margin-top: 5pt;
    font-size: 1.75rem;
}

h4   {
    color: #f77c9b;
    margin-bottom: 0;
    font-size: 1.4rem;
}

footer a {
    color: white;
    font-weight: bold;
}

p {
    margin-top: 5px;
}

hr    {
    max-width: 80%;
    border: solid 1pt #FC8EAC;
    
    }

a {
  color: #fb6f92;
}

a:hover, a:active {
    font-weight: bold;
}

nav {
    padding: 5pt;
    margin-bottom: 5pt;
}

nav a, nav a:visited { 
    font-family: ivyjournal, sans-serif;
    font-size: 1rem;
    font-weight: bold;
    color: #ffffff;
    background: linear-gradient(183deg, #f9c2cc 10%, #FC8EAC 70%);
    border: solid 2px #ffb3c6;
    padding: 5px;
  text-align: center; 
  text-decoration: none;
  display: inline-block;
  border-radius: 5px;
    margin-top: 2pt;
}

nav a:hover, nav a:active 
{

  border: solid 2px #FC8EAC;
}

.link
{
  background-color: #FC8EAC;
  color: white;
  padding: 10px;
  border: none;
  text-align: center; 
  text-decoration: none;
  display: inline-block;
  border-radius: 10px;
}


#pages a:hover, nav a:active 
{
  background-color: #fb6f92;
  color: #ffe5ec;
}

article {
        text-align: justify;
        padding: 2pt;
        margin: auto;
        max-width: 1024px;
        align-content: center;
        }

article ul {
        text-align: left;
        }
article img {
        padding: 2pt;
        display: block;
        margin-left: auto;
        margin-right: auto;
        }

blockquote {
  margin-inline-start: 2rem;
  margin-inline-end: 0;
  margin-block: 2rem;
  padding: 0.4rem 0.8rem;
  border-inline-start: 0.35rem solid var(--accent);
  color: var(--text-light);
  font-style: italic;
}

pre code {
    display: block;
    background-color: #282A36;
    text-wrap: wrap;
    color: #f9dee1;
    padding: 5pt;
    border-style: solid;
    border-width: 3pt;
    border-radius: 10px;
    border-image: linear-gradient(90deg, #f681ae, #f38282, #f7d54d, #6ed46e, #3ed3da, #a48ac9 100%);
    border-image-slice: 1;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}
code {
    background-color: #f9dee1;
    padding: 1.5pt;
}
code a, a:hover, a:active, a:visited {
    font-weight: bold;
}
strong {
    background-color: #fab1c1;
}
summary {
    font-size: 1.2rem;
    background-color: #f9dee1;
}
details {
    background-color: #f9dee1;
    padding: 2pt;
    border: solid 1pt #fb6f92;
}
.spoilers {
    padding: 10pt;
    border-style: solid;
    border-width: 3pt;
    border-radius: 10px;
    border-image: linear-gradient(90deg, #f681ae, #f38282, #f7d54d, #6ed46e, #3ed3da, #a48ac9 100%);
    border-image-slice: 1;
    background-color: #282A36;
    color: #ffb7c5;
    font-weight: 400;
}
.intro img {
    padding: 5px;
}
.blurb {
    display: block;
    background-color: #f7d3d6;
    border: solid 2pt;
    border-color: white;
    padding: 5pt;
    margin: auto;
    max-width: 1024px;
    border-radius: 10px;
}

.now {
    display: block;
    background-color: #f7d3d6;
    border: solid 2pt;
    border-color: white;
    padding: 5pt;
    margin: auto;
    text-align: justify;
    max-width: 1024px;
    border-radius: 10px;
}
.text {
    display: block;
    justify-content: center;
    background-color: #f7d3d6;
    border: solid 2pt;
    border-color: white;
    padding: 5pt;
    margin: auto;
    text-align: justify;
    max-width: 1024px;
    border-radius: 10px;
}

.intro {
    display: block;
    background-color: #f7d3d6;
    border: solid 2pt;
    border-color: white;
    padding: 5pt;
    margin: auto;
    text-align: center;
    width: 80%;
    max-width: 1024px;
    border-radius: 10px;
}

.icon {
    height: 1.2rem;
    width: auto;
}

.social-icons {
    font-size: 1.5rem
}

#follow-icons {
    margin-bottom: 5pt;
}

.photo img {
    border: solid white 2pt;
}

.photo {
    align-content: center;
    text-align: center;
}

.caption {
    text-align: center;
}

.bio {
    background: linear-gradient(to bottom, #f9dee1, #f7d3d6, #fab1c1 );
    color: #484848;
    border: 1pt solid #FC8EAC;
    border-radius: 10pt;
    width: 400px;
    margin-right: auto;
    margin-left: auto;
    text-align: left;
    padding: 5pt;
    box-shadow: 5px 5px 5px #777676;
    margin-bottom: 10pt;
    font-size: 1rem;
    min-height: 225px;
}

.bio img {
    float: left;
    margin-top: auto;
    margin-right: 5pt;
    border-radius: 8pt;
    max-width: auto; 
    max-height: 200px;
    
}

.updated {
    font-size: 1rem;
    color: #484848;
    font-style: italic;
}

/* Format tables */
table {
    border-collapse: collapse;
    margin: 1.5rem 0;
  }
  
  figure > table {
    width: max-content;
    margin: 0;
  }
  
  td,
  th {
    border: 2px solid var(--accent);
    text-align: start;
    padding: 0.5rem;
  }
  
  th {
    font-weight: bold;
    background-color: var(--accent-hover);
  }
  
  tr:nth-child(even) {
    /* Set every other cell slightly darker. Improves readability. */
    background-color: var(--bg);
  }
  tr:nth-child(odd) {
    /* Set every other cell slightly darker. Improves readability. */
    background-color:   #f6d2d9;
  }
  
  table caption {
    font-weight: bold;
    margin-bottom: 0.5rem;
  }
  

footer
    {
    font-size: 1rem;
    padding: 2pt;
    }

    @media screen and (max-width: 428px) 
    {
      h1 { font-size: 8vw !important; }
    }
/* Custom Icons */

