/*  Cheese's Fur: #D9A86C / rgba(217,168,108)
    Split Complimentary Contrast >3: #475959 / rgba(71,89,89)
    Split Complimentary Background Highlight: #6C93D9 / rgba(108,147,217)
    */

body, html {
    margin: 0;
    padding: 0;
    background-color: rgba(71,89,89);
    color: rgba(217,168,108);
}

iframe {
    border: none;
    width: 100%;
    height: 100%;
}

.view-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.iframe-container {
    position: relative;
    justify-content: center;
    overflow: hidden;
    border: none;
    width: 100%;
    height: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio (9 / 16 = 0.5625) */
}

.form-button {
    color: rgba(71,89,89);
    background-color: rgba(217,168,108);
    padding: 15px 32px;
    text-align: center;
    text-decoration: rgba(108,147,217);
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 25px;
    border-color: rgba(108,147,217);
}

input[type="text"] {
    padding: 5px 5px;
    font-size: 16px;
    background-color: rgba(71,89,89);
    color: rgba(217,168,108);
    border-color: rgba(108,147,217);
    border-style: solid;
}

input[type="password"] {
    padding: 5px 5px;
    font-size: 16px;
    background-color: rgba(71,89,89);
    color: rgba(217,168,108);
    border-color: rgba(108,147,217);
    border-style: solid;
}

input:focus {
    outline: none;
    padding: 5px 5px;
    font-size: 16px;
    background-color: rgba(71,89,89);
    color: rgba(217,168,108);
    border-color: rgba(108,147,217);
    border-style: solid;
}

label {
    padding: 10px 5px;
    font-size: 16px;
}

.login-container {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.login-button-container {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

a:link {
    color: lightseagreen;
}

a:visited {
    color: lightcoral;
}

a:hover {
    color: red;
}

a:active {
    color: lightcoral;
}

a.invisible-link {
    text-decoration: none;
    color: inherit;
}

.dynamic-header-source {
    background-color: rgba(0,0,0,0.3);
    text-align: center;
    padding: 20px 0;
    width: 100%;
}

footer {
    text-align: center;
    padding: 20px 0;
    background-color: rgba(0,0,0,0.3);
}

h1 {
    font-family: 'Brush Script MT', cursive;
    text-align: center;
}

h2 {
    font-family: 'Brush Script MT', cursive;
    text-align: center;
}

p {
    display: inline;
}

hr {
    color: rgba(217,168,108);
}

.logo-top-left {
    position: absolute;
    left: 20px;
    top: 10px;
    height: 200px;
}

.logo-top-center {
    align-items: center;
    top: 10px;
    height: 100px;
}

.logo-top-right {
    position: absolute;
    right: 20px;
    top: 10px;
    height: 200px;
}

.menu-header {
    font-family: 'Brush Script MT', cursive;
    font-size: 24px;
}

.menu-line {
    display: flex;
    background-color: dodgerblue;
}

.dropbtn {
    background-color: rgba(71,89,89);
    color: rgba(217,168,108);
    padding: 16px;
    font-size: 16px;
    margin-left: 2px;
    border: none;
    cursor: pointer;
    width: auto;
}

.menu-login {
    position: relative;
    display: inline-block;
    margin-left: auto;
}

.menu {
    position: relative;
    display: inline-block;
    text-align: left;
}

.menu:hover .dropdown-links {
    display: block;
    background-color: rgba(71,89,89,0.8);
}

.menu:hover .dropbtn {
    background-color: rgba(71,89,89,0.8);
}

.menu:hover .countdown {
    display: block;
    background-color: rgba(71,89,89,0.8);
}

.dropdown-links {
    display: none;
    position: absolute;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(108,147,217,0.2);
    z-index: 1;
    max-height: 350px;
    overflow-y: scroll;
}

.dropdown-links a {
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.countdown {
    display: none;
    position: absolute;
    box-shadow: 0px 8px 16px 0px rgba(108,147,217,0.2);
    z-index: 1;
}

.time-container {
    display: inline;
    min-width: 430px;
}

.time {
    font-family: 'Brush Script MT', cursive;
    display: inline;
    font-size: 24px;
}

.label {
    display: inline;
    font-size: 24px;
}