@font-face {
    src: url('../font/Lato-Regular.ttf');
    font-family: Lato;
}

body {
    margin: 0;
    font-family: Lato;
    background-color: #111;
    color: #EFEFEF;
}

.pv-container {
    height: 75vh;
}

.header {
    height: 125px;
    width: 100%;
    background-color: #111;
    position: relative;
}

.header h1 {
    margin: 0;
    font-size: 48pt;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.header-img {
    filter: blur(var(--blur));
    will-change: filter;
}

.info {
    background-color: #111;
}

.info h1 {
    font-size: 42pt;
    text-align: center;
}

.album-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.album {
    width: 80%;
    justify-self: center;
    box-sizing: border-box;
}

.album img {
    width: 100%;
    background-color: #EFEFEF;
    padding: 5px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px black;
}

.album h3 {
    text-align: center;
}

.footer {
    background-color: #000;
    padding: 20px;
}

.footer h4 {
    margin: 0;
    text-align: center;
}

.stream-container {
    margin-top: 35px;
    margin-bottom: 35px;
}

.stream {
    display: inline-block;
    text-align: center;
}

.stream img {
    display: inline-block;
    width: 15%;
}

.stream a {
    text-decoration: none;
}

.stream a:not(:last-child) {
    margin-right: 50px;
}

.social-container {
    margin-top: 50px;
    margin-bottom: 100px;
    position: relative;
}

.socials {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.socials a {
    text-decoration: none;
}

.socials img {
    display: inline-block;
    width: 40px;
}

.socials a:not(:last-child) {
    margin-right: 30px;
}

@media screen and (max-width: 1000px) {
    .stream img {
        width: 25%;
    }
}

@media screen and (max-width: 700px) {
    .header {
        padding: 0;
    }

    .header h1 {
        width: 100%;
        font-size: 32pt;
        margin: 0;
        text-align: center;
    }

    .album-container {
        grid-template-columns: none;
        grid-template-rows: 1fr 1fr 1fr;
    }

    .pv-container {
        height: 25vh;
    }

    .stream-container {
        margin: 0;
    }

    .stream {
        display: block;
        width: 100%;
    }

    .stream img {
        width: 50%;
    }

    .stream a {
        display: block;
        margin-right: 0;
        margin-bottom: 25px;
    }

    .stream a:not(:last-child) {
        margin-right: 0;
    }

    .socials {
        display: block;
        width: 95%;
        text-align: center;
        margin-bottom: 10px;
        margin-top: 15px;
    }
}