.container {
    position: relative;
    width: 100%;
    height: auto;
}

.image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px;
    font-size: 20px;
    text-align: center;
    width: 80%;
    font-size: 2em;
}

img.bg {
    /* Set rules to fill background */
    min-height: 100%;
    min-width: 1024px;

    /* Set up proportionate scaling */
    width: 100%;
    height: auto;

    /* Set up positioning */
    position: fixed;
    top: 0;
    left: 0;
}

@media screen and (max-width: 1024px) {

    /* Specific to this particular image */
    img.bg {
        left: 50%;
        margin-left: -512px;
        /* 50% */
    }
}

body {
    color: black;
    background-color: rgb(20, 119, 119);
    margin: 0;
    padding: 0;
}

hr {
    height: 2px;
    background-color: black;
    border-width: 0;
}

button {
    background-color: black;
    color: white;
    padding: 10px 20px;
    border-radius: 12px;
}

a:link {
    color: #ffffff;
}

/* Unvisited link */
a:visited {
    color: #ffffff;
}

/* Visited link */
a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Hovered link */
a:active {
    color: #ffffff;
}

a:link {
    text-decoration: none;
}

a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

a:active {
    text-decoration: none;
}

img {
    border-radius: 12px;
}

iframe {
    border-radius: 12px;
}

.center {
    text-align: center;
    border-radius: 12px;
}

.sidenav {
    position: sticky;
    top: 0;
    background-color: black;
    color: #ffffff;
    width: 200px;
    border-radius: 12px;

    text-align: center;
}

video {
    border-radius: 12px;
}

.secret.welcome {
    border-radius: 12px;

}