* {
    border: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    background-color: black;
    color: white;
}

.wrapper {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 4rem;
    width: 100%;
}

header p {
    margin-bottom: 1.5rem;
}

h1 {
    background-color: black;
    font-size: 4rem;
    text-transform: uppercase;
    text-align: center;
    border: solid 2px red;
    padding: 2rem 10rem; 
    z-index: 1;
    width: clamp(300px, 80%, 1093px);
    margin-left: auto;
    margin-right: auto;
    position: relative;
    
}

h3 {
    color: red;
    font-weight: 600;
    text-align: center;
    margin-top: .5rem;
    margin-bottom: 2.5rem;
}

.heading {
    position: relative;
    width: 90%;
}

.line {
    background-color: red;
    height: 2px;
}

.top-line {
    position: absolute;
    top: 40%;
    z-index: 0;
    width: 90%;
    left: 5%;
    right: 5%;
}

.middle-line {
    position: absolute;
    top: 50%;
    z-index: 0;
    width: 100%;
}

.bottom-line {
    position: absolute;
    top: 60%;
    z-index: 0;
    width: 90%;
    left: 5%;
    right: 5%;
}

.placeholder {
    margin-top: 3rem;
    margin-bottom: 6rem;
    width: 40%;
    text-align: center;
}

section {
    margin-bottom: 5rem;
}

.placeholder-line {
    width: 40%;
}

.interview {
    width: 35%;
}

.pbs-viral-player-wrapper {
    position: relative; 
    padding-top: calc(56.25% + 43px);
}

iframe {
    position: absolute; 
    top: 0; 
    width: 100%; 
    height: 100%; 
    border: 0;
}

.interview-line {
    width: 80%;
}

.shows-line {
    width: 90%;
}

a {
    color: blue;
    font-weight: bold;
}

.archive-imgs {
    display: flex;
    align-items: center;
    justify-content: center;
}

.archives img {
    width: 300px;
    padding: 0 1rem;
}

.archives img.full-size {
    width: clamp(950px, 100%, 1200px);
}

.archives img:hover {
    cursor: pointer;
}

.archives-line {
    width: 80%;
}

.sculpture {
    margin-top: 4.5rem;
}

.contact-line {
    width: 40%;
}

.contact {
    margin-bottom: 2rem;
    text-align: center;
}

.contact-h3 {
    margin-bottom: 1.5rem;
}

.contact p {
    margin: .5rem .5rem;
}

@media only screen and (max-width: 1050px){
    .interview {
        width: 50%
    }

    .archive-imgs {
        flex-direction: column;
    }

    .archives img {
        padding: 1rem 0;
    }

    h1 {
        padding: 2rem 2rem;
        font-size: 3rem;
    }
}

@media only screen and (max-width: 500px){
    .sculpture img {
        width: 100%;
    }

    .line {
        width: 60%;
    }

    .interview {
        width: 90%;
    }

    .placeholder {
        width: 70%;
    }

    .archive-imgs {
        align-items: start;
    }

    .top-line, .middle-line, .bottom-line {
        display: none;
    }
}