@charset "utf-8";

/* CSS Document */

@import url('https://fonts.googleapis.com/css?family=Catamaran');
body {
    font-family: 'Catamaran', sans-serif;
    background-color: teal;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.Aligner {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.Aligner2 {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-top: 2em;
}

.container {
    max-width: 1200px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.logo_pen img {
    max-width: 100%;
    height: auto;
}

.logo_pen_2 img {
    max-width: 100%;
    height: auto;
}

#logo_text_1 {
    max-width: 320px;
    margin-left: 2em;
    line-height: 1.25;
}

@media (min-width: 1138px) {
    .logo_pen_2 {
        display: none;
    }
}

@media (max-width: 1137px) {
    .Aligner {
        display: flex;
        align-items: flex-start;
        justify-content: center;
        padding-top: 2em;
    }
    .container {
        margin-left: 1.5em;
        margin-right: 1.5em;
        max-width: 500px;
        justify-content: center;
    }
    .logo_pen {
        display: none;
    }
}
