/* --- Reset --- */
* {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0px;
    margin: 0px;
}

html,
body {
    height: 100%;
    width: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    background-color: #2b2b2b;
    color: #ebebee;
}

::-webkit-input-placeholder,
:-moz-placeholder,
::-moz-placeholder,
:-ms-input-placeholder {
    color: #999;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}

p {
    font-size: 18px;
}

p+p {
    margin-top: 30px;
}

a:hover,
input,
textarea,
select,
button {
    -o-transition: .5s;
    -ms-transition: .5s;
    -moz-transition: .5s;
    -webkit-transition: .5s;
    transition: .5s;
    -webkit-appearance: none;
    font-family: 'Poppins', sans-serif;
}

/* --- Main styles --- */

.main {
    padding-top: 30px;
    text-align: center;
    padding-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;

}

.main h1 {
    font-size: 50px;
    font-weight: bold;
}

.main .holder {
    max-width: 600px;
}

.main a {
    color: #fff;
}


/* Small desktop sizing issues --- */
@media only screen and (max-width: 1410px) {
    .holder {
        padding: 30px;
    }
}

/* --- Mobile styles --- */
@media only screen and (max-width: 800px) {}
