body {
    font-family: 'Boogaloo', cursive;
    font-size: 24px;
    background-image: url(background.jpg);
    background-attachment: fixed;
}

.container img {
    border: 2px solid #ddd;
    border-radius: 4px;
    padding: 2px;
    width: 150px;
}

.container img:hover {
    border-color: orange;
}

.logo {
    display: block;
    margin: 0 auto;
    height: auto;
    width: auto;
    max-width: 690px;
    max-height: 285px;
}

.menu {
    margin: 0 auto;
    margin-top: 5px;
    width: auto;
    text-align: center;
    text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
    font-size: 30px;
}

.videoWrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    padding-top: 25px;
    height: 0;
}
.videoWrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

a {
    color: white;
    text-decoration: none;
}

.container a {
    color: darkorange;
}

a:hover {
    color: orange;
    text-decoration: underline;
}

.menuitem {
    margin-left: 20px;
    margin-right: 20px;
}

.container {
    width: 60%;
    display: block;
    margin: 0 auto;
    margin-top: 10px;
    padding-bottom: 40px;
    position: relative;
    background: rgba(1, 1, 1, .65);
    border-radius: 25px;
}

.text {
    top: 25px;
    left: 20px;
    width: 95%;
    height: 95%;
    color: white;
    position: relative;
}

#myBtn {
    font-family: 'Boogaloo', cursive;
    font-size: 24px;
    display: none; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 20px; /* Place the button at the bottom of the page */
    right: 30px; /* Place the button 30px from the right */
    z-index: 99; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    background-color: slateblue; /* Set a background color */
    color: white; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 15px; /* Some padding */
    border-radius: 10px; /* Rounded corners */
}

#myBtn:hover {
    background-color: #555; /* Add a dark-grey background on hover */
}