@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:wght@100;200;300;400;500;600;700&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Fira Sans', sans-serif;
}

body {
    background: url('./media/logocube_still.png') no-repeat;
    background-size: cover;
}

.showcase {
    position: absolute;
    right: 0;
    width: 100%;
    min-height: 100vh;
    padding: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    z-index: 2;
}

.showcase header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

img.logo {
    height: 80px;
}

h1.logo {
    cursor: pointer;
    font-weight: 400;
}

h1.logo span.light {
    font-weight: 200;
}

.showcase video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6)
}

.text {
    position: relative;
    z-index: 10;
}

.text h2 {
    font-size: 5em;
    font-weight: 600;
    line-height: 1em;
}

.text p {
    font-size: 1.1em;
    margin: 20px 0;
    font-weight: 200;
    max-width: 700px;
}

a {
    color: #fff;
}

.social {
    position: absolute;
    bottom: 20px;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}

.social li {
    list-style: none;
}

.social li a {
    display: inline-block;
    margin-right: 20px;
    transform: scale(1.0);
    transition: 0.5s;
}

.social li a:hover {
    transform: scale(1.2);
}

a:hover>i.fa-facebook-square {
    color: #2D88FF;
    transition: 0.5s;
}

a:hover>i.fa-soundcloud {
    color: #FF5501;
    transition: 0.5s;
}

a:hover>i.fa-instagram {
    color: #D34863;
    transition: 0.5s;
}

a:hover>i.fa-bandcamp {
    color: #1DA0C3;
    transition: 0.5s;
}

@media(max-width: 991px) {
    .showcase,
    .showcase header {
        padding: 40px;
    }

    .text h2 {
        font-size: 3em;
    }
}