@font-face {
    font-family: 'Lato';
    src: url('../fonts/Lato-Regular.ttf') format('truetype');
}

* {
    pointer-events: none;
    user-select: none;
    margin: 0;
    padding: 0;
    transition: 1s ease-in-out;
}

body {
    font-family: 'Lato', Arial, sans-serif;
    height: 100%;
    width: 100%;
    display: flex;
}

img {
    width: 100px;
    height: auto;
}

a {
    pointer-events: auto;
}

#background {
    background-color: #181818;
    background-image: url(../img/fractal_bg_.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    font-family: 'Lato', Arial, sans-serif;
    height: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
}

#content {
    position: absolute;
    margin: auto;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 80%;
    height: 80%;
    max-width: 750px;
    max-height: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 100;
}

#content img {
    margin: 5%;
    top: 0;
    -webkit-animation: scale-down-center 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) reverse both;
    animation: scale-down-center 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) reverse both;
}

@-webkit-keyframes scale-down-center {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
}
@keyframes scale-down-center {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
}

#content .brand {
    color: #c5c0ba;
    animation: 1s ease-out 0s 1 fadeInLeft;
    display: flex;
    flex-direction: column;
}

#content .title {
    color: #d5c0a1;
    display: flex;
}

#content .links {
    bottom: 0;
    margin: 5%;
    pointer-events: auto;
    user-select: none;
    animation: 1s ease-out 0s 1 fadeInUp;
}

#content .links a{
    color: #C6C6C6;
    text-decoration: none;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

#content .links a:hover{
    color: #b7863e;
}

#content .sub {
    display: flex;
}

footer {
    color: #b3b3b3;
    font-size: 11px;
    bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    left: 50%;
    margin-left: -100px;
    animation: 1s ease-out 0s 1 fadeIn;
    z-index: 100;
}

#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: 1;
}

#mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

@media screen and (min-width: 1000px) {
    #content .brand {
        border-left: 10px solid #a07534;
        padding-left: 30px;
    }

    #content .title {
        font-size: 40px;
    }

    #content .sub {
        font-size: 25px;
        letter-spacing: 2px;
    }

    #content * {
        margin: 10px;
    }

    #content .links a{
        font-size: 30pt;
    }
}

@media screen and (max-width: 1000px) {
    #content .brand {
        border-left: 1vw solid #a07534;
        padding-left: 3vw;
    }

    #content .title {
        font-size: 20px;
    }

    #content .sub {
        font-size: 15px;
        letter-spacing: .3vw;
    }

    #content * {
        margin: 5px;
    }

    #content .links a{
        font-size: 20px;
    }
}