
            /* user styles */

            /* styles are what change the color and sizes of stuff on your site. */

            /* these are variables that are being used in the code
    these tended to confuse some people, so I only kept 
    the images as variables */

            :root {
                --header-image: url('https://porcelainpills.neocities.org/images/header2-5.png');
                --body-bg-image: url('https://porcelainpills.neocities.org/images/bg.png');

                /* colors */
                --content: #c0c0c0;
            }


            body {
                font-family: 'Verdana', sans-serif;
                font-size: 12px;
                margin: 0;
                background-color: #131313;
                /* you can delete the line below if you'd prefer to not use an image */
                background-size: 268px;
                color: #c0c0c0;
                background-image: var(--body-bg-image);
            }

            * {
                box-sizing: border-box;
            }

            /* below this line is CSS for the layout */

            /* this is a CSS comment
    to uncomment a line of CSS, remove the * and the /
    before and after the text */

.layout-container {
    background-color: #000000;
    border: 2px solid #333;
    max-width: 1200px;
    margin: 20px auto;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

            /* the "container" is what wraps your entire website */
            /* if you want something (like the header) to be Wider than
    the other elements, you will need to move that div outside
    of the container */
    
    #container {
    max-width: 900px;  /* increase from 776px to whatever width you want */
    margin: 0 auto;
}
           
            /* the area below is for all links on your page
    EXCEPT for the navigation */
            #container a {
                color: #c0c0c0;
                font-weight: bold;
                /* if you want to remove the underline
      you can add a line below here that says:
      text-decoration:none; */
            }

     
     #header {
    width: 100%;
    background-color: transparent;
    height: 501px;
    background-image: var(--header-image);
    background-size: 776px;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 10px;
}


          .disclaimer-header {
  background-color: #000;
  width: 100%;
  height: 25px;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 10px;
  color: white;
}

.disclaimer-header a {
  color: #c0c0c0;
  font-weight: bold;
}

.header-box {
    width: 900px;
    margin: 0 auto 10px auto;
    background-color: transparent;
}

.header-box img {
    width: 100%;
    display: block;
}
     
            #flex {
                display: flex;
            }
            
            
.top-nav {
    background-color: #000;
    padding: 0 20px;
    top: 0;
    height: 25px;
    margin-bottom: 10px;
}
.nav-primary {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
    align-items: center;
    height: 100%;
}
.nav-primary li {
    margin: 0;
}
.nav-primary a {
    color: #fff;
    text-decoration: none;
    font-size: 10px;
    line-height: 12px;
    font-weight: normal;
    display: inline-block;
    padding: 5px 10px;
}
.nav-primary a:hover {
    color: #c91e63;
    background-color: rgba(0, 0, 0, 0.2);
}
.nav-primary .signup {
    margin-left: auto;
}

            
            .sidebar {
    background-color: #fff;
    padding: 20px;
    max-width: 300px;
    font-family: Arial, sans-serif;
}

.sidebar h2 {
    font-size: 24px;
    margin: 0 0 15px 0;
}


.url-box {
  font-size: 12px;
  padding: 10px;
  background-color: #ffffff;
  color: #000000;
  border: 2px solid #000000;
  width: 95%;
}


            /* this colors BOTH sidebars
    if you want to style them separately,
    create styles for #leftSidebar and #rightSidebar */
            aside {
                background-color: #131313;
                width: 350px;
                padding: 20px;
                font-size: smaller;
                /* this makes the sidebar text slightly smaller */
            }


            /* this is the color of the main content area,
    between the sidebars! */
            main {
                background-color: #131313;
                flex: 1;
                padding: 20px;
                order: 2;
            }

            /* what's this "order" stuff about??
    allow me to explain!
    if you're using both sidebars, the "order" value
    tells the CSS the order in which to display them.
    left sidebar is 1, content is 2, and right sidebar is 3! */

            */ #leftSidebar {
                order: 1;
            }

            #rightSidebar {
                order: 3;
            }
            
            .image-sidebar {
      margin-bottom: 10px;
}

.image-sidebar-content {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.image-sidebar-img {
    flex-shrink: 0;
    width: 120px;
}

.image-sidebar-img img {
    width: 100%;
    display: block;
}

.image-sidebar-text {
    flex: 1;
}

.image-sidebar-text h2 {
    margin-top: 0;
    font-size: 16px;
    color: #c0c0c0;
}

.image-sidebar-text p {
    margin: 8px 0;
    font-size: 12px;
    color: #c0c0c0;
}


.tour-dates-table {
    width: 100%;
    border-collapse: collapse;
    max-height: 200px;
    overflow: hidden;
    position: relative;
}


.tour-dates-table td {
    border: none;
    padding: 10px;
    vertical-align: top;
}

.tour-dates-table td:nth-child(1) {
    width: 20%;

}

.tour-dates-table td:nth-child(2) {
    width: 40%;
     white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tour-dates-table td:nth-child(3) {
    width: 30%;
}

.tour-dates-table ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tour-dates-table li {
    margin-bottom: 10px;
    font-size: 12px;
}

.two-columns {
  display: flex;
  gap: 20px;
}

.two-columns > div {
  flex: 1;
}

            footer {
                background-color: #131313;
                /* background color for footer */
                width: 100%;
                height: 40px;
                padding: 10px;
                text-align: center;
                /* this centers the footer text */
            }

            h1,
            h2,
            h3 {
                color: #F7F7F7;
            }

            h1 {
                font-size: 25px;
            }
            
          h2 {
            font-size: 20px;
          }

           h3 {
                font-size: 16px;
            }


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

            /* this is just a cool box, it's the darker colored one */
            .box {
                background-color: #131313;
                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 */

            /* so you wanna change the width of your page? 
    by default, the container width is 900px.
    in order to keep things responsive, take your new height,
    and then subtrack it by 100. use this new number as the 
    "max-width" value below
    */

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

                aside {
                    width: 100%;
                }

                /* the order of the items is adjusted here for responsiveness!
      since the sidebars would be too small on a mobile device.
      feel free to play around with the order!
      */
                main {
                    order: 1;
                }

                #leftSidebar {
                    order: 2;
                }

                #rightSidebar {
                    order: 3;
                }

                #navbar ul {
                    flex-wrap: wrap;
                }
            }
