*,
*:before,
*:after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    background: #000;
}

a {
    text-decoration: none;
}

.nav {
    position: relative;
    margin: 20px auto;
    display: flex;
    flex-wrap: wrap;
    width: 500px;
    justify-content: center;
    text-align: center;
    -moz-column-gap: 50px;
         column-gap: 50px;
    color: #fff;
    padding: 30px 0 30px 0;
    z-index: 2;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}

.nav:hover {
    color: #444;
}

.nav:hover .nav--todo {
    color: inherit;
}

.nav__item {
    position: relative;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    cursor: pointer;
    padding: 20px;
    transition: ease-out 0.2s;
    color: inherit;
}

.nav--todo {
    color: #757678;
    cursor: not-allowed;
}

.nav--todo:before {
    content: "Coming soon :)";
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    background: #fff;
    color: #000;
    text-align: center;
    border-radius: 10px;
    padding: 10px;
    position: absolute;
    z-index: 3;
    left: 0;
    top: 4em;
}

.nav--todo:after {
    content: "";
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 10px solid #fff;
    position: absolute;
    z-index: 2;
    right: 2em;
    top: 3.3em;
}

.nav--todo:before,
.nav--todo:after {
    visibility: hidden;
    opacity: 0;
}

.nav--todo:hover:before,
.nav--todo:hover:after {
    visibility: visible;
    opacity: 1;
}

.nav--valid:hover {
    color: #fff;
    background: #E73C7E;
    transition: ease-in 0.2s;
}

.container__inner {
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 60vw;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.heading--h1 {
    font-size: 150px;
    margin: 0px;
    font-weight: 900;
    background: linear-gradient(45deg, #EE7752, #E73C7E, #23A6D5, #23D5AB);
    background-size: 400%;
    -webkit-animation: gradient-shift 5s ease alternate infinite;
            animation: gradient-shift 5s ease alternate infinite;
    background-attachment: local;
    background-repeat: no-repeat;
    -webkit-background-clip: text;
            background-clip: text;
    color: transparent;
    text-align: center;
    transition: all 0.4s;
}

.heading--h2 {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    padding-top: 20px;
}

.stuff {
    position: relative;
    overflow: hidden;
    width: 100%;
    transition: all 0.4s;
}

.container__inner:hover .stuff {
    width: 99%;
    transition: all 0.4s;
}

.stuff__list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    list-style-type: none;
    justify-content: space-between;
    margin: -5px -10px 0 -5px;
}

.stuff__item {
    position: relative;
    flex-grow: 1;
    margin: 5px 5px 0 0;
    flex-basis: auto;
    text-align: center;
}

.stuff__item:after {
    position: absolute;
    left: -5px;
    content: "•";
}

footer {
    width: 100vw;
    display: flex;
    justify-content: space-between;
    padding: 1em;
    bottom: 0;
}

.footer__text {
    color: #abb;
    font-size: 14px;
}

.footer__contact:hover {
    color: #fff;
}

.parenthesis:before {
    content: "(";
}

.parenthesis:after {
    content: ")";
}

.container__inner:hover .heading--h1 {
    transform: scale(1.2);
    transition: all 0.4s;
}

.container__inner:hover .parenthesis:after,
.container__inner:hover .parenthesis:before {
    content: "";
}

.container__inner:hover .alterable:before {
    content: attr(data-alter-to);
}

.container__inner:hover .stuff__main {
    display: none;
}

.container__outer {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100vh;
    position: relative;
    z-index: 0;
    min-width: 265px;
    min-height: 320px;
}

@media only screen and (max-height: 480px) {
    .heading--h1 {
        font-size: 70px;
    }

    .heading--h2 {
        font-size: 10px;
    }

    .nav {
        padding: 0 5vh 0 5vh;
        margin-top: 5vh;
    }
}

@media only screen and (max-height: 280px) {
    .heading--h1 {
        font-size: 60px;
    }

    .heading--h2 {
        font-size: 8px;
    }
}

@media only screen and (max-width: 768px) {
    .heading--h1 {
        font-size: 90px;
    }

    .heading--h2 {
        font-size: 12px;
    }

    .footer__text {
        font-size: 12px;
    }
}

@media only screen and (max-width: 480px) {
    .heading--h1 {
        font-size: 55px;
    }

    .heading--h2 {
        font-size: 10px;
    }

    .nav {
        -moz-column-gap: 25px;
             column-gap: 25px;
        padding: 0 10px 0 10px;
        width: 80%;
        margin-top: 10%;
    }

    .nav__item {
        font-size: 10px;
        padding: 10px;
    }

    .footer__text {
        font-size: 10px;
    }

    .container__inner {
        width: 80vw;
    }
}

@media only screen and (max-width: 320px) {
    .heading--h1 {
        font-size: 50px;
    }

    .heading--h2 {
        font-size: 8px;
    }

    .footer__text {
        font-size: 8px;
    }
}

/* Below 264px things will become static */
@media only screen and (max-width: 264px) {
    .container__inner {
        width: 250px;
    }

    footer {
        width: 265px;
    }
}