* {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    resize: both;
    overflow: auto;
    background-color: black;
}

#bgImage {
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -100;
    transform: translate(-50%, -50%);
    filter: blur(5px) brightness(50%);
}

#wrapper {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
    flex-direction: column;
}

#intro {
    height: auto;
    padding-bottom: 25px;
    border-bottom: 2px solid white;
    border-bottom-color: white;
}

#intro p {
    text-align: center;
    color: white;
    font-size: 32px;
}

#intro p:nth-child(1) {
    font-size: 86px;
}

#intro span {
    color: red;
}

#intro-link {
    color: red;
    text-decoration: none;
    transition: all 0.5s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

#intro-link:hover {
    color: white;
}

#nav {
    position: relative;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
    margin-top: 25px;
    height: 50px;
}

.button {
    padding: 10px 20px 10px 20px;
    background-color: #00000044;
    border-radius: 3px;
    border-color: #ff000044;
}

#nav p, #nav a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    transition: all 0.35s 0.1s cubic-bezier(0, 0, 0.355, 1.000);
}

#nav p a:hover {
    color: red;
}

#icons {
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: row;
    margin-top: 15px;
    height: auto;
    width: auto;
}

#icons img {
    -webkit-user-drag: none;
    -webkit-user-select: none;
    width: 72px;
    height: 72px;
    transition: .2s all;
}

#icons img:nth-child(2) {
    margin-left: 25px;
    margin-right: 25px;
}

#icons img:hover {
    filter: opacity(25%);
}

#footer {
    position: absolute;
    bottom: 0px;
    width: 100%;
    height: 50px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#footer p {
    font-size: 14px;
    font-weight: 400;
    color: white;
    transition: all 0.5s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1.000);
    height: auto;
}

.foot-link {
    text-decoration: none;
    color: red;
    transition: .2s;
}

.foot-link:hover {
    color: white;
}

#nav-mobile {
    display: none;
}

@media screen and (max-width: 768px) {
    #intro p {
        font-size: 24px;
    }

    #intro p:nth-child(1) {
        font-size: 66px;
    }
    
    #nav {
        position: relative;
        margin-top: 25px;
        height: 50px;
    }
}

@media screen and (max-width: 480px) {
    #intro p:nth-child(1) {
        width: auto;
        font-size: 60px;
    }
    
    #nav {
        display: none;
    }
    
    #nav-mobile {
        display: inherit;
        list-style-type: none;
        height: auto;
    }
    
    .navItem {
	    padding-top: 25px;
        padding-bottom: 25px;
	    font-size: 20px;
    }
    
    .navItem a {
        display: block;
        color: white;
        text-align: center;
        padding: 0px 16px;
        text-decoration: none;
        transition: .25s ease-in-out;
    }
    
    .navItem a:hover {
        background-color: #111;
        color: dodgerblue;
    }
}