*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

body {
  line-height: 1.2;
  -webkit-font-smoothing: antialiased;
}

/*html,body {
    min-height: 100%;
}*/

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

p {
  text-wrap: pretty;
}
h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}

@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@400;700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

section {
    display: flex;
    flex-direction: column;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    height: 100%;
}

#image, #content {
    width: 100%;
    flex: 1 0 auto;
}

#image {
    background: url(img/bg-photo.jpg) no-repeat center center #3B626E;
    background-size: cover;
    height: 200px;
}

#content {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 20px;
}

#content img {
    width: 250px;
    margin: 0 auto;
}

h1 {
    font-size: 40px;
    text-transform: uppercase;
    letter-spacing: -2px;
    color: #1F909D;
}

p {
    font-size: 20px;
    text-transform: uppercase;
    color: #3B626E;
    letter-spacing: -1px;
}

#content p + p {
    font-size: 26px;
    letter-spacing: -2px;
}

@media (min-width: 1250px) {

    html {
        min-height: 100%; 
        display: flex;       
    }

    body {
        min-height: 100%;
        flex: 1 1 auto;
    }

    section {
        flex-direction: row;
    }

    #image, #content {
        width: 50%;
        height: 100%;
        min-height: 100%;
    }

    #image {
        height: auto;
        min-height: 100%;
    }

    #content img {
        width: 420px;
    }

    h1 {
        font-size: 60px;
        letter-spacing: -4px;
    }

    p {
        font-size: 24px;        
        letter-spacing: -1px;
    }

    #content p + p {
        font-size: 34px;
        letter-spacing: -2px;
    }


}