/* CSS Document */
.invalid {
    border: 1px solid red;
}
body {
    background-color: #ffffff;
    font-family: "Calibri", sans-serif;
    margin: 0;
}
h2 {
    color: #00558C;
}
label {
    display: block;
    margin-bottom: 10px;
	font-weight: bold;
}
textarea {
    width: 100%;
	font-size: 12pt;
	padding: 5px;
    border: 1px solid #00558C;
    border-radius: 4px;
    margin-bottom: 30px;
	resize: none;
	font-family: "Calibri", sans-serif;
}
input {
    width: 100%;
	font-size: 12pt;
	padding: 5px;
    border: 1px solid #00558C;
    border-radius: 4px;
    margin-bottom: 30px;
	font-family: "Calibri", sans-serif;
}
input[type="submit"] {
    background-color: #00558C;
    color: #ffffff;
    cursor: pointer;
}
input[type="submit"].flashing {
    animation: flashing-animation 1s infinite;
}
input[type="radio"] {
    width: unset;
	padding: 0px;
    border-radius: 0px;
    margin-bottom: 0px;
}
@keyframes flashing-animation {
0% {
background-color: #00558C;
}
50% {
background-color: #319B42;
}
100% {
background-color: #00558C;
}
}
input[type="submit"]:hover {
    background-color: #319B42;
}
.submitting {
    background-color: #f7f7f7;
    color: #777777;
    cursor: not-allowed;
}
.header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    background-color: rgba(0, 85, 140);
    height: 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.3);
}
.header-content {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.container {
    margin: 0 auto; /* Added this line to center the container */
}
.img-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 80px;
    background-image: url("img/pittsburgh_skyline.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 220px;
    -webkit-mask-image: url("img/ripped_edge.png");
    mask-image: url("img/ripped_edge.png");
    -webkit-mask-repeat: repeat-x;
    mask-repeat: repeat-x;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: cover;
    mask-size: cover;
}
.img-grid h1 {
    font-weight: bold;
    color: white;
    font-size: 40px;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 1.00);
}
.top-grid {
    text-align: left;
    width: 95vw;
    margin: 0 auto; /* Added this line to center the top-grid */
}
.bottom-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 95vw;
    margin: 0 auto; /* Added this line to center the bottom-grid */
}
#video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio (1080p) */
    border-radius: 15px; /* Rounded corners */
    overflow: hidden;
    box-shadow: 0 0px 25px rgba(0, 0, 0, 0.5);
}
#video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.horizontal-bar {
    width: 90%;
    height: 2px;
    background-color: #00558C;
}
.button {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    background-color: #319b42;
    color: #fff;
    text-decoration: none;
    border: none;
    transition: background-color 0.3s ease;
}
.button:hover {
    background-color: #3BBA4F;
}