/* Tag Selectors */

body {
    background-image: url(/images/9019808.jpg);
    max-width: 1000px;
    margin: auto;
    color: #fff;
    width: 90%;
}
header {
    background-image: url(/images/banner.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

nav a {
    text-decoration: none;
}

h1 {
    text-align: center;
}

li a {
    margin-right: 25px;
    font-size: 20px;
}


a:link {
    background-color: transparent;
    color: rgb(171, 151, 246);
}

a:visited {
    background-color: transparent;
    color: rgb(177, 218, 255);
}

a:hover {
    background-color: transparent;
    color:rgb(242, 121, 248);
}

a:active {
    color: rgb(223, 253, 0);
}

h2 {
    color: #93b1b5;
    text-align: center;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

ol {
    list-style: upper-roman;
}

p {
    font-size: 18px;
}

figure {
    display: inline;
}
figcaption {
    font-size: 12px;
}

figure img {
    width: 180px;
    height: 225px;
}

dt {
    font-size: 1.5em;
}

blockquote {
    text-align: justify;
}

blockquote::first-letter {
    font-size: 1.8em;
    font-weight: bold;
}

hr {
    border: 4px solid #9ef0ff;
}

th {
    text-align: center;
    background-color: rgb(72, 42, 120);
    color: white;
}

td {
    background-color: rgb(40, 13, 83);
}

table {
    margin: auto;
}

table, th, td {
    border: 2px solid #93b1b5;
    border-collapse: collapse;
}

th, td {
    padding: 10px;
}


/* IDs */
#navdiv {
    display: flex; align-items: center; justify-content: space-between;
}

#navdiv li {
    list-style: none;
    display: inline-block;
}

/* Creates a flex display for featured products */
#products {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 100px;
}

#figure-container {
    display: flex;
    justify-content: center;
    flex-direction: row;
}

#infobar{
    background-color: blue;
    font-weight: bold;
    color: #fff;
}

#text {
    /* font-size: 12px; */
}

/* Classes */
.navbar {
    padding-right: 15px;
}

.row {
    display: flex;
}

.column {
    flex: 33%;
    border: solid #9ef0ff 5px;
    padding: 5px;
}

.bold {
    font-weight: bold;
}

.color {
    color: #9ef0ff;
}

.center {
    text-align: center;
}

.logo {
    float: left; 
}

.container {
    text-align: center;
}

.container p {
    font-size: 14px;
}

.recommendations {
    list-style-image: url(images/pointing-right.png);
}

nav {width:100%; text-align:center}
nav a {display:block; width:30%;
text-decoration:none;}
/* display:block = top to bottom */
nav li {list-style:none}
nav li a {padding:6px}
@media only screen and (min-width:640px){
nav a {display:inline}
/* display:inline = left to right */
nav li {display:inline; padding:0 18px}
} /* Close 640 Media Query for larger screens */

.flex-container {
  display: flex;
  flex-wrap: wrap; /* Allows items to wrap to the next line */
  gap: 20px; /* Spacing between columns */
}

.flex-item {
  flex: 1 1 calc(50% - 20px); /* Two columns, considering gap */
}

/* Example of a media query for a single column on smaller screens */
@media (max-width: 600px) {
  .flex-item {
    flex: 1 1 100%; /* Full width on small screens */
  }
}

@media (max-width: 600px) {
    #figure-container {
        flex-direction: column;
    }
}
.box {
    border: 2px #00d4ff solid;
}

.neon-text {
    color: #fff;
    text-shadow: 0 0 5px #ff005e, 0 0 10px #ff005e, 0 0 20px #ff005e, 0 0 40px #ff005e, 0 0 80px #ff005e;
    animation: glow 1.5s infinite alternate;
}

@keyframes glow {
    0% {
        text-shadow: 0 0 5px #ff005e, 0 0 10px #ff005e, 0 0 20px #ff005e, 0 0 40px #ff005e, 0 0 80px #ff005e;
    }
    100% {
        text-shadow: 0 0 10px #00d4ff, 0 0 20px #00d4ff, 0 0 40px #00d4ff, 0 0 80px #00d4ff, 0 0 160px #00d4ff;
    }
}

.zoom {
  transition: transform .2s;
}

.zoom:hover {
  transform: scale(1.5); 
}

.required {
    color:red;
    font-weight: bold;
}

.mySlides {
    display: none;
    width: 300px;
    height: 168px;
}

