:root {
    box-sizing: border-box;
}
body {
    background-color: rgb(247,247,247);
    font-family: Arial, Helvetica, sans-serif;
    color: #2b2b2b;
}
#outer-container {
    width: 100%;
    padding: 0px;
    margin: auto;
}
#container {
    margin: auto;
    width: 98%;
    max-width: 1200px;
    overflow: hidden;
}
.container {
    display: flex;
    width: 100%;            
}
.column-1 {
    flex-shrink: 0; /* shrinks to 0 to apply 70% width*/
    flex-basis: 65%; /* sets initial width to 70%*/
}
#twitch {
    padding-top: 56.25%;
    position: relative;
    height: 0;
}
#twitch iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
}
.column-2 {
    flex-shrink: 0; /* shrinks to 0 to apply 70% width*/
    flex-basis: 30%; /* sets initial width to 70%*/
}
.box {
    /* background-color: rgb(245, 215, 160); */
    /* padding: 10px; */
    /* border: 2px solid rgb(116, 113, 113); */
    margin: 1rem;
}

@media only screen and (max-width: 900px) {
    .container {
        flex-direction: column;
    }

    .box {
        margin: 0 0 1rem;
    }
    div#tagline {
        font-size: 3.2vw;
    }
    div#printing {
        font-size: 3.5vw;
    }
}
#header-stripes {
    width:100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(
        to bottom,
        #990a14,
        #990a14 50%,
        #cccccc 50%,
        #cccccc
    );
    height: 10px !important;
    background-size: 100% 10px;
}
#header {
    width: 100%;
    height: 130px !important;
    margin: auto !important;
    padding-top: 10px;
    border-bottom: solid silver 1px;
}
nav {
    position: relative;
    top: -150px;
    text-align: right;
    padding: 5px;
    font-weight: bold;
    color: #990a14;
    font-size: large;
}
a {
    color: inherit;
    text-decoration: none;
}
#footer {
    margin-top: 10px;
    width: 100%;
    font-size: smaller;
}
#tagline {
    transform: rotate(-3deg);
    position: relative;
    top: -75px;
    left: 150px;
    font-size: 1.8em;
    color: #7a7a7a;
}
#social {
    width: 100%;
    text-align: right;
    position: relative;
    top: -100px;            
}
#printing {
    /* text-align: center; */
    width: 100%;
    font-weight: bold;
    font-size: 1.51em;
}
#etsy {
    /* transform: rotate(-10deg);
    margin-right: 15px;
    position: relative;
    left:10px;
    top:-30px; */
    border: solid #9e8d7f 0px;
}
#amzn {
    width: 100%;
    height: 100%;
    padding-left: 10px;
    padding-right: 10px;
}
#featured {
    width: 100%;
    padding-top: 17px;
    height: 100% !important;
    text-align: center;
    margin-top: 10px;
    background-color: rgba(253, 132, 36, 0.15) ;
    border-radius: 10px;
}