
 /*  Rollover image styles  */ /* this is to make hover states */
  .figure {
    position: relative;
    width: 360px;
    max-width: 100%;
  }
  .figure img.Sirv.image-hover {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    object-fit: contain;
    opacity: 0;
    transition: opacity .2s;
  }
  .figure:hover img.Sirv.image-hover {
    opacity: 1;
  }
  
            :root {
                --header-image: url('/pictures/skyheader.png');
                --body-bg-image: url('/pictures/background.png');

                /* colors */
                --content: #43256E;
            }


            @font-face {
                font-family: ADD;
                src: url('https://skyluck.neocities.org/ADDSBP__.TTF');
            }

            body {
                font-family: 'ADD', sans-serif;
                margin: 0;
                background-color: #26264D;
                background-size: 180px;
                color: #FF7B7B;
                background-image: var(--body-bg-image);
            }

            * {
                box-sizing: border-box;
            }

            #container {
                max-width: 900px;
                margin: 0 auto;
            }

            #container a {
                font-weight: bold;
            }

            #header {
                width: 100%;
                background-color: #5e4e8c;
                height: 150px;
                background-image: var(--header-image);
                background-size: 100%;
            }

            main {
                flex: 1;
                padding: 0px;
                order: 2;
            }
            footer {
                background-color: #13092D;
                width: 100%;
                height: 40px;
                padding: 10px;
                text-align: center;
            }

            h1,
            h2,
            h3 {
                color: #E5E5FF;
                text-align: center;
            }

            h1 {
                font-size: 25px;
            }

            strong {
                /* this styles bold text */
                color: #E5E5FF;
            }

a:link {
  color: #E5E5FF;
  background-color: transparent;
  text-decoration: none;
}

a:visited {
  color: white;
  background-color: transparent;
  text-decoration: none;
}

a:hover {
  color: white;
  background-color: transparent;
  text-decoration: underline;
}

a:active {
  color: white;
  background-color: transparent;
  text-decoration: underline;
}

            /* this is just a cool box, it's the darker colored one */
            .box {
                background-color: #13092D;
                border: 1px solid #ED64F5;
                padding: 10px;
            }

            /* CSS for extras */

            #topBar {
                width: 100%;
                height: 30px;
                padding: 10px;
                font-size: smaller;
                background-color: #13092D;
            }

            /* BELOW THIS POINT IS MEDIA QUERY */


            @media only screen and (max-width: 900px) {
                #flex {
                    flex-wrap: wrap;
                }

                aside {
                    width: 100%;
                }

                main {
                    order: 1;
                }
            }