/* Theming */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap"); /* import font */

:root{
    --white: #ffffff;
    --black: #36383F;
    --background: #dce6f0;
    --blue: #0070c0;
    --yellow: #e5ba00;
    --grey: #f4f4f4;
    --green: #00c991;

}

/* Reset */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-color: var(--background);
/*    font-family: "Poppins", sans-serif;*/
}
a{
    text-decoration: none;
}

ul{
    list-style: none;
}

hr {
    color: var(--blue);
    margin-top: 50px;
    margin-bottom: 50px;
    border: 3px solid;
}

.content {
    width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Header */
.header{
    background-color: var(--background);
    box-shadow: 1px 1px 5px 0px var(--background);
    position: sticky;
    top: 0;
    width: 100%;
    min-height: 100px;
}
/* Logo */
.logo{
    display: inline-block;
    color: var(--white);
    font-size: 60px;
    margin-left: -30px;
}


.leftcol {
    order: 1;
}

.rightcol {
    order: 2;
}

.headerimage {
    width: inherit;
}
.logoimage {
    width: 150px;
    margin: 10px;
}
.screenimage {
    width: 350px;
    border: 3px solid var(--blue);
}

.docimage {
    width: 273px;
    height: 355px;
    border: 1px solid var(--blue);
}

.headline {
    font-size: 2.6rem;
    color: var(--blue);
    margin-bottom: 30px;
}



/* Responsiveness */
@media (min-width: 768px) {



}
