body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    font-family: helvetica, sans-serif;
    color: #EEEEEE;
}

a:link {
    color: #FFFFFF;
    text-decoration: none;
}

a:visited {
    color: #FFFFFF;
    text-decoration: none;
}

a:hover {
    color: #FFFFFF;
    text-decoration: underline;
}

a:active {
    color: #FFFFFF;
    text-decoration: underline;
}

.main {
    position: relative;
}

.sectionheading {
    text-align: center;
    font-size: 30px;
}

.header {
    position: sticky;
    top: 0;
    width: 100%;
    text-align: center;
    background-color: #000000;
    z-index: 1;
}

.gallery {
    position: relative;
    text-align: center;
    width: 100%;
}

.headshot {
    height: 200px;
    border: 4px solid #000000;
}

.actorprep {
    position: relative;
    text-align: left;
    width: 100%;
}

.about {
    position: relative;
    text-align: left;
    width: 100%;
}

.backgrounds {
    position: relative;
    text-align: center;
    width: 100%;
}

.background {
    height: 150px;
    border: 4px solid #000000;
}

.footer {
    position: relative;
    width: 100%;
    padding: 20px;
    font-size: 12px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    box-sizing: border-box;
}

/** desktop **/
@media all and (orientation: landscape) {
    .actorprep {
        position: relative;
        margin: auto;
        text-align: left;
        width: 750px;
    }

    .about {
        position: relative;
        margin: auto;
        text-align: left;
        width: 750px;
    }
}