body{
    padding: 0px;
    margin: 0px;
    overflow: auto;
}

.top{
    width: auto;
    height: 25px;
    background-color: rgb(0, 0, 0);
}

.header{    
    width: auto;
    height: auto;
    background-image: url(bcgyellow.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 3%;
    padding-top: 1%;
    
}

.header h1{
    font-size: 100px;
    width: 60%;
    margin: 0 auto;
    margin-top: 20px;
    text-align: center;
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 800;
    font-style: italic;
    /*border: 2px solid #ccc;*/
    text-shadow: 13px 8px 3px #000000,
    -2px -2px 0px #000000;
    color: rgb(46, 201, 212);
}

.content{
    display: flex;
    height: auto;
    width: auto;

}

.left, .middle, .right {
    border-top: 5px solid #f5d130;
    padding: 10px;
    border-bottom: 5px solid #f5d130;
    
}

.left, .right {
    flex: 1;
    background-color: rgb(0, 0, 0);
}

.middle {
    flex: 4;
    border-left: 3px solid #f5d130;
    border-right: 3px solid #f5d130;
    background-color: rgba(0, 0, 0, 0.9);
}

.middle h2{
    color: rgb(46, 201, 212);
    font-family: "Roboto Condensed", sans-serif;
    font-size: 16px;
    font-weight: 100;
    text-align: center;
    padding-left: 5px;
    padding-right: 5px;
}

.middle h3{
    text-align: center;
    margin-top: 20px;
    
}

.middle h3 a{
    color: rgb(46, 201, 212);
    font-family: "Roboto Condensed", sans-serif;
    font-size: 20px;
    font-weight: 150;
    text-decoration: none;
    transition: 300ms;
}

.middle h3 a:hover{
    transition: 1s;
    color: white;
    text-decoration: underline;
}

.right img{
    width: 100%;
    border: 3px black;
    transform: translateY(5px);
    margin-bottom: 10px;
}

.left img{
    width: 100%;
    border: 3px black;
    transform: translateY(5px);
    margin-bottom: 10px;
}
