*{
    margin: 0;
    padding: 0;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
}
body{
    background:white;
    color: white;   
}
#header{
    width: 100%;
    height: 80;
    background-image: url(images/DNA_background.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    
}
.container{
    padding: 10px 10%;
}
nav{
    background-color : white;
    width: 100vw;
    display: flex;
    align-items: center; /* was center, PROBLEM?? */
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 10px 0;
    position: fixed; 
    top: 0;
    left: 0;
    z-index: 1000;
} 
.logo{
    width: 200px;
    background-color: white;
}   
nav ul{
    display: flex;
    justify-content: space-between;
}
nav ul li{
    display: inline-block; /* horz align */
    list-style: none;
    margin: 10px 20px;
}
nav ul li a{
    color: red;
    text-decoration: none; /* removes the hyperlink underline */
    font-size: 18px;
    position: relative; /*was relative, then I changed to flex-end (made underline not work?) */
    top: 0px;
}
nav ul li a::after{
    content: '';
    width: 0; /* hides the line until you hover over it */
    height: 3px;
    background: red; /* hover effect for underline to show up for links */
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: 0.5s;
}
nav ul li a:hover::after{
    width: 100%; /* makes the line visible by making width 100% after hover */
}
.header-text{
    margin-top: 30%;
    font-size: 40px;
}
.header-text h1{
    font-size: 60px;
    margin-top: 5px;
}
.header-text h1 span{
    color:red;
}

/******search bar*******/

.box{
    width: 100%;
    text-align:center;
}
#SearchableList {
    width: 300px; 
    padding: 10px; 
    font-size: 16px; 
}
#search-section {
    height: 300px; /* Increase the size of the search area */
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.8); /* Optional: Add a light background */
    padding: 50px 0;
    margin-top: 20px;
}
/* Background Container */
.search-container {
    background-color: rgb(112, 112, 240);
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 60%;
    max-width: 600px;
}
/* Center the search bar and make it larger */
#SearchableList {
    width: 50%;
    max-width: 600px;
    padding: 10px;
    font-size: 1.2em;
    border: 2px solid #ddd;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}
/* Search Title */
.search-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: black;
}
/* Search Bar */
#SearchableList {
    width: 100%;
    padding: 5px 10px;
    font-size: 16px;
    border: 2px solid #ccc;
    border-radius: 5px;
    box-shadow: inset 0px 2px 4px rgba(0, 0, 0, 0.1);
}
#go-button {
    padding: 6px 15px;
    background-color: #4CAF50;  /* Green background */
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
    margin-top: 20px;  /* Moves the button down */
}
#go-button:hover {
    background-color: #45a049;  /* Darker green on hover */
}
footer {
    color: black;        
    text-align: left;      
    padding: 10px 0;     
    padding-left: 10px;    
    position: fixed;       
    bottom: 0;             
    width: 100%;            
    font-size: 18px;
}