@import url('https://fonts.googleapis.com/css?family=Montserrat:400,600,700');
@import url('https://fonts.googleapis.com/css?family=Catamaran:400,800');

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    background-color: #222;
    margin-bottom: 0;
    margin-right: 0;
}

html, button, input, select, textarea {
    font-family: 'Montserrat', Helvetica, sans-serif;
    color: #bbb;
}

/* Telefony */
main {
    margin: auto;
}

section.text {
    padding: 5%;
    padding-top: 5vh;
    margin: auto;
}

img {
    margin-bottom: 0;
    margin-top: 4.4vh;
    max-width: 98%;
    float: right;
}

h1 {
    text-align: center;
    margin: 0px;
    font-size: calc(6.6vw + 6.6vh + 6.6vmin);
    color: #8df18d;
    white-space: nowrap;
}
  
p { 
    margin: 10px auto 10px;
    font-size: calc(0.8vw + 0.8vh + 0.8vmin);
    text-align: center;
}

.button {
    text-align: center;
}
  
a.button-text {
    text-transform: uppercase;
    font-size: calc(0.7vw + 0.7vh + 0.7vmin);
    background-color: #8df18d;
    padding: 10px 15px;
    border-radius: 0;
    color: #000000;
    display: inline-block;
    margin-right: 5px;
    margin-bottom: 5px;
    line-height: 1.5;
    text-decoration: none;
    margin-top: 50px;
    margin-bottom: 50px;
    letter-spacing: 1px;
}

/* Komputery */
@media screen and (min-width: 1455px) {
    
    main {
        margin: auto;
        display: flex;
    }

    section.text {
        padding: 5%;
        padding-top: 5vh;
        flex-basis: fit-content;
        margin: auto;
    }

    img {
        max-height: 95vh;
        margin-bottom: 0;
        margin-top: 4.4vh;
        max-width: 98%;
        display: flex;
        justify-content: flex-end;
        align-items: flex-end;
        flex-basis: auto;
    }

    h1 {
        text-align: center;
        margin: 0px;
        font-size: calc(7vw + 7vh + 7vmin);
        color: #8df18d;
        white-space: nowrap;
    }
      
    p { 
        margin: 30px auto 30px;
        font-size: calc(0.7vw + 0.7vh + 0.7vmin);
        text-align: center;
    }

    .button {
        text-align: center;
    }
      
    a.button-text {
        text-transform: uppercase;
        font-size: 1.4em;
        background-color: #8df18d;
        padding: 10px 15px;
        border-radius: 0;
        color: #000000;
        display: inline-block;
        margin-right: 5px;
        margin-bottom: 5px;
        line-height: 1.5;
        text-decoration: none;
        margin-top: 50px;
        margin-bottom: 50px;
        letter-spacing: 1px;
    }
    
}