* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;


}

html {background-color:#182e43;}
body {

    background-color:#182e43;
}

header{
    background-color:#11293c;
    padding-bottom: 10px;


}
footer{
margin-top:10px;
padding-bottom: 10px;

}

#show_time {
font-size: 4vw;
}

.hide{
  display:none;
}

small {
padding-bottom: 15px;
}

img {
padding-top: 10px;
padding-bottom: 10px;
text-align: center;

}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
	width: 50px;
}

.centered {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

#white-text {
color: white;
}

#blue-text {
color: #182e43;
}

div.transbox {
margin-top: 10px;
  margin-right: 15px;
margin-left: 15px;
  background-color: #182e43;
  border: 2px solid #142a3d;
border-radius: 5px;
  opacity: 0.75;
text-align: center;
}
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px;

}

#tidewidget {
}

input[type=text] {
  width: 100%;
  box-sizing: border-box;
  border: 2px solid #ccc;
  border-radius: 2px;
  font-size: 16px;
  background-color: #253851;
  background-image: url('search-icon.webp');
  background-position: 10px 10px;
  background-repeat: no-repeat;
  padding: 12px 20px 12px 40px;
}

#searchbar{

color: white;
}

#list {
    list-style: none;
    padding: 0;
    margin: 0;
     display: grid;

    justify-content: center;


}


/* On screens that are 600px wide or less, the background color is olive */
@media screen and (max-width: 549px) {
  #list {
    grid-template-columns: auto;
  }
}
/* On screens that are 992px wide or less, the background color is blue */
@media screen and (min-width: 550px) {
  #list {
    grid-template-columns: auto auto;


  }
}

/* On screens that are 992px wide or less, the background color is blue */
@media screen and (min-width: 950px) {
  #list {
    grid-template-columns: auto auto auto ;


  }
}

/* On screens that are 992px wide or less, the background color is blue */
@media screen and (min-width: 1200px) {
  #list {
    grid-template-columns: auto auto auto auto;


  }
}



/* On screens that are 992px wide or less, the background color is blue */
@media screen and (min-width: 1400px) {
  #list {
    grid-template-columns: auto auto auto auto auto auto;


  }
}

.animals {
    font-size: 1.2em;
    padding: 10px;
    border-bottom: 1px solid #ccc;
    animation: fadeIn 0.5s ease-in-out;
background-color:#4c4c83c9;
}

.animals:last-child {
    border-bottom: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
