@import 'fontawesome.min.css';
@import 'brands.min.css';

@font-face {
    font-family: 'Century Gothic';
    src: url('../webfonts/gothic-regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Century Gothic';
    src: url('../webfonts/gothic-bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

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

html, body {
    border: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-font-smoothing: antialiased;
}

html {
    font-size: 62.5%;
}

body {
    background: #000000;
    color: #ffffff;
    padding: 10rem 10%;
    font-family: 'Century Gothic';
    font-size: 1.6rem;
    line-height: 1.66667;
}

@media (min-width: 640px){
    body {
        font-size: 2.1rem;
    }
}

a,
a:active,
a:focus,
a:hover,
a:visited {
    color: #1eaaa9;
    text-decoration: none;
    outline: 0;
    transition: color ease 300ms;
}

a:hover {
    text-decoration: underline;
}

::-moz-selection {
    background: #1eaaa9;
    color: #ffffff;
    text-shadow: none;
}

::selection {
    background: #1eaaa9;
    color: #ffffff;
    text-shadow: none;
}

.splash {
    width: 100%;
    max-width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 5rem;
}

@media (min-width: 640px){
    .splash {
        justify-content: space-between;
    }
}

@media (min-width: 1000px){
    .splash {
        max-width: 80rem;
    }
}

.top,
.bottom,
.contact {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 5rem;
    text-align: center;
    white-space: nowrap;
}

.bottom {
    font-size: 1rem;
}

.logo {
    width: 100%;
}

.logo img {
    max-width: 100%;
}

.contact {
    gap: 1rem;
}

.social {
    font-size: 3.2rem;
}

.social a {
    color: inherit;
}

.social i {
    transition: color ease 300ms;
}

.social a:hover i {
    color: #0866ff;
}

.nowr {
    white-space: nowrap;
}
