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;
    text-align: center;
    top: 0;
    width: 100%;
    background-color: #000000;
    z-index: 1;
}

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

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

.headshot {
    height: 260px;
    border: 2px solid #FFFFFF;
}

.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;
}

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

.social-instagram {
    height: 40px;
    padding-right: 10px
}

.social-facebook {
    height: 40px;
    padding-right: 10px
}

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

/** vertical smartphone **/
@media screen and (min-width: 480px) and (orientation: portrait) {
    .headshot {
        height: 300px;
        border: 2px solid #FFFFFF;
    }
}

/** desktop **/
@media all and (orientation: landscape) {
    .header {
        margin: auto;
        width: 1600px;
    }

    .gallery {
        margin: auto;
        width: 1600px;
    }
    
    .gallerycorp {
        margin: auto;
        width: 1600px;
    }

    .headshot {
        height: 550px;
    }
    
    .actorprep {
        margin: auto;
        width: 750px;
    }

    .about {
        margin: auto;
        width: 750px;
    }

    .backgrounds {
        margin: auto;
        width: 1600px;
    }

    .social_media {
        width: 1600px;
    }

    .footer {
        width: 1600px;
    }
    
}