*{
    margin: 0;
    padding: 0;
}

@font-face{
	font-family: tangerine;
	src: url(TYPOGRAPHPROExtraBold.ttf);
}

body{
    background-color: rgb(31, 31, 31);
    min-width: 800px;
}

nav{
    background-color: #121212;
    width: 100%;
    border-bottom: 5px solid #fb2222;
}

nav img{
    width: 30%;
    margin: auto;
    padding: 20px;
    display: block;
}

#container{
    display: grid;
    grid-template-columns: 45% 55%;
    width: 85%;
    background-color: #121212;
    margin: auto;
    margin-top: 20px;;
    padding: 20px;
    overflow: hidden;
}

.article-one{
    display: inline-block;
    background-color: #fb2222;
    margin: auto;
    padding: 10px;
    padding-top: 13px;
}
.article-one section{
    margin: auto;
    margin-bottom: 10px;
}
.article-one section h6{
    background-color: white;
    font-family: tangerine;
    text-align: center;
}
.player-radio{
    margin: auto;
}

.schedule{
    display: grid;
    grid-template-columns: 33% 33% 33%;
    grid-gap: 5px;
}

.schedule section{
    background-color: white;
    margin: 3px;
    font-family: tangerine;
    height: 250px;
    border-radius: 15px 15px 15px 15px;
    padding: 6px;
    text-align: center;
    margin-bottom: 0;
    filter: saturate(0%);
    transition: 200ms;
}
.schedule section:hover{
    background-color: #121212;
    color: white;

}
.schedule section img{
    display: inline-block;
    max-width: 40%;
    height: auto;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 60px;
    border-radius: 50%;
    
}

.schedule section h3{
    font-size: 12px;
}

.schedule section h5{
    font-size: 9px;
}

.article-two{
    display: inline-block;
    margin-left: 15px;
    padding: 10px;
    background-color: #fb2222;
    height: 750px;
}

.collage-box{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 140px;
    grid-gap: 10px;
    width: 100%;
    margin: auto;
    margin-top: 10px;
}
.collage-box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0%);
    transition: 250ms;
}

.collage-box img:nth-child(4){
    grid-column-start: span 2;
}

.collage-box img:nth-child(5){
    grid-row-start: span 2;
}

.collage-box img:nth-child(8){
    grid-area: span 2 / span 2;
}

.collage-box img:hover{
    filter: saturate(100%);
}

.social-media{
    display: inline-block;
    width: 96%;
    padding: 10px;
    margin-top: 10px;
    background-color: white;
    text-align: center;
    transition: 400ms;
}
.redesicon{
	display: inline-block;
}

.social-media a{
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin: 5px;
    color: rgb(0, 0, 0);
    text-decoration: none;
    transition: 400ms;
}

.social-media:hover{
    background-color: #111111;
}

.social-media a:hover{
    color: #fb2222;
}

@media screen and (min-width: 1600px) {
    .collage-box img:nth-child(4){
        grid-column-start: span 1;
    }
    
    .collage-box img:nth-child(5){
        grid-row-start: span 1;
    }
    .collage-box img:nth-child(9){
        grid-column: 3;
        grid-row: 2 / span 2 ;
    }
    .collage-box img:nth-child(1){
        grid-area: span 2 / span 1;
    }

}