@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600|Rubik:400,500');

html {
    background-color: #000;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

body {
    color: #FFF;
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


html, body {
    height: 100%;
}

h1, h2 {
    font-weight: inherit;
    margin: inherit;
    font-size: inherit;
}

.container {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.box {
    flex: 1;
}

.main {
    font-family: "Rubik", sans-serif;
    font-size: 36px;
    display: flex;
    align-items: center;
}

.main .subtitle {
    font-size: 144px;
    font-weight: 500;
}

.mailContainer {
    display: flex;
    align-items: flex-end;
}

#mail {
    font-size: 18px;
    color: #757575;
    margin-bottom: 30px;
    width: 100%;
}

#content {
    padding-left: 150px;
    height: 100%;
}

.semibold {
    font-weight: 600;
}

.underline {
    text-decoration: underline;
}

a {
    color: inherit;
    text-decoration: inherit;
}

@media only screen and (max-width: 1100px) {
    .main .subtitle {
        font-size: 120px;
    }

    #content {
        padding-left: 100px;
    }
}

@media only screen and (max-width: 500px), only screen and (max-height: 500px) {
    .main {
        font-size: 24px;
        margin: 0 50px;
    }

    .main .subtitle {
        font-size: 36px;
    }

    #content {
        padding-left: 0;
    }

    #mail {
        margin-left: 20px;
        margin-right: 20px;
        font-size: 17px;
        text-align: center;
    }
}