body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-color: transparent;
}

.byrd-main {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
}


.primary-button {
    box-sizing: border-box;
    border: 2px solid rgb(187, 0, 0);
}

.primary-button a {
    display: block;
    color: white;
    font-size: 1.4rem;
    text-decoration: none;
    text-align: center;
    height: 2.5rem;
    background-color: rgb(187, 0, 0);
    padding-top: 1rem;
}

.primary-button a:hover {
    background-color: white;
    color: rgb(187, 0, 0);
    cursor: pointer;
}


#cam-wrapper {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
    width: 100%;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: auto;
}

#live-cam {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    -webkit-transition: background 1.5s linear;
    -moz-transition: background 1.5s linear;
    -o-transition: background 1.5s linear;
    -ms-transition: background 1.5s linear;
    transition: background 1.5s linear;
}

