@import './reset.css';

body {
    background-image: url('../images/cover.jpg');
    background-color: rgb(215, 218, 223);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

a {
    color: rgba(255, 244, 152, 1);
}

.site {
    min-height: 100vh;
    position: relative;
    clear: both;
    float: left;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.content {
    height: 100%;
    
    padding-bottom: 110px;
}

.logo {
    margin: auto;
    text-align: center;
}

footer {
    height: 110px;
    width: 100%;
    position: absolute;
    bottom: 0;
    display: flex;
    float: left;
    clear:both;
    flex-wrap: wrap;
    justify-content: space-evenly;
    background-color: rgba(0,0,0,0.5);
    color: gray;
    font-size: 0.7em;
}

footer section img {
    width: 120px;
}

.discs {
    margin: auto;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.discs iframe {
    width:800px;
    height:480px;
    box-shadow: 0 0 10px 2px black;
}

.discs iframe:hover {
    box-shadow: 0px 0px 5px 0 rgba(255, 244, 152, 1);
}

@supports (display: flex) {
    @media screen and (max-width: 800px) {

    }
}

nav {
    margin: auto;
    margin-top: 20px;
    text-align: center;
}

nav ul li {
    display: inline-block;
    font-size: 3em;
}

li+li {
    margin-left: 10px;
}

.fa-youtube,
.fa-instagram,
.fa-spotify,
.fa-soundcloud,
.fa-bandcamp,
.fa-apple,
.fa-facebook-square {
    color: #888;
}

.fa-youtube:hover {
    color: #FF0000;
}

.fa-instagram:hover {
    color: #C13584;
}

.fa-facebook-square:hover {
    color: #4267B2;
}

.fa-spotify:hover {
    color: #1DB954;
}

.fa-soundcloud:hover {
    color: #FF7700;
}

.fa-apple:hover {
    color: #000000;
}

.fa-bandcamp:hover {
    color: #629AA9;
}