body {
    background-color: antiquewhite;
    font-size: 20px;
}
.title-bar {
    background-color: white;
    text-align: center;
    min-height: 200px;

}

h1 {
    font-size: 50px;
}
.bysteve {
    font-size: 25px;
}
.hubless {
    font-size: 35px;  
}
.container {
    display: grid;
    grid-template-columns: 1fr minmax(300px, 800px) 1fr;
}
.content {
    grid-column-start: 2;
}

.footer {
    background-color: white;
    font-size: 20px;
    text-align: center;

}
.below-footer {
    text-align: center;
    font-size: 15px;
}

.callout-box {
    
    background-color: lightsteelblue;
    border-radius: 25px;
    max-width: 600px;
    margin: auto;
    padding: 20px;
    text-align: center;
}

.Disclaimer {
    background-color: lightsalmon;
    border-radius: 25px;
    padding: 5px;
}

.highlighted-information {
    background-color: lightgrey;
    max-width: 100%;
    margin: auto;
    padding: 20px;
    text-align: center;
}
label {
    display: block;
    margin-bottom: 5px;
}
input, textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}
button {
    background-color: palevioletred;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
button:hover {
    background-color: #45a049;
}
.error {
    color: red;
    font-size: 0.9em;
    margin-top: -10px;
    margin-bottom: 10px;
}
.centered-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.centered-image img {
    max-width: 100%;
    height: auto;
}
.caption {
    font-style: italic;
    text-align: center;
}
a:link {
    color: rgb(90, 28, 28);
  }
.responsive-video {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
}
.responsive-video .video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
