:root {
    --color-background-light: #f5f5f5;
    --color-background-dark: #272727;
    --color-text-dark: #494949;
    --color-text-light: #ffffff;
    --color-accent: #ff6014;
    --color-background-theme: #e06e2c;
}

@font-face {
    font-family:"play-regular";
    src: url("/fonts/Play-Regular.ttf") format("truetype");
  }

  @font-face {
    font-family:"play-bold";
    src: url("/fonts/Play-Bold.ttf") format("truetype");
  }


/* Global style reset */

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html,
body {
    font-family: 'play-regular', 'PT Sans', sans-serif;
    height: 100%;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
}


/* Remove ugly default decorating stuff for lists and punctuations */

ul {
    list-style-type: none;
}


/* Remove ugly default decorating stuff for links (anchors) */

a {
    text-decoration: none;
    color: #333;
}

p {
    margin: 10px 0;
}

img {
    border:0;
}


/* utilities */

.hidden {
    display: none;
}

.hidden-on-large {
    display: none;
}

.flex {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.grid-2-asymetric {
    grid-template-columns: 2fr 1fr;
}

.text-center {
    text-align: center;
}


/* General styles */

.bg-light {
    background-color: var(--color-background-light);
}

.bg-dark {
    background-color: var(--color-background-dark);
}

.text-light {
    color: var(--color-text-light);
}

.bg-theme {
    background-color: var(--color-background-theme);
}

.text-dark {
    color: var(--color-text-dark);
}

.container {
    width: 80%;
    margin: 0 auto;
    padding: 0 40px;
}

.section {
    padding-top: 20px;
    padding-bottom: 20px;
}

.showcase {
    min-height: 700px;
}

.link a {
    font-size: 22px;
    font-weight: 200;
}

.link a:hover {
    color: var(--color-accent);
}

.link a i {
    margin-right: 10px;
}

.social-media-icon a:hover{
    color: var(--color-accent);
}

/* Footer */

.footer {
    padding: 20px 0 20px;
}

.footer p {
    font-size: 16px;
    margin: 0;
}


/* Specific styling */

#main-info-image-area {
    margin-top: 160px;
}

#dpfinfo-image-main {
    max-height: 140px;
    max-width: 100%;
}

#main-info-text {
    padding-top: 40px;
    padding-bottom: 40px;
}

.text-title {
    font-family: play-bold;
    font-size: 50px;
    padding: 40px 20px;
}

.text-title-description {
    padding: 20px 20px;
    font-size: 26px;
}

.main-info-download {
    padding-top: 20px;
    padding-bottom: 40px;
}

.additional-download {
    padding-top: 20px;
    padding-bottom: 20px;
}

.screenshot-portrait {
    max-width: 100%;
    max-height: 600px;
}

.screenshot-landscape {
    max-width: 100%;
    max-height: 600px;
}

.hardware-image {
    max-width: 100%;
    max-height: 300px;
}

.fab {
    margin-left: 20px;
}

.section.download {
    padding-top: 20px;
    padding-bottom: 20px;
}


#additional {
    padding-bottom: 40px;
}



/* Sections general rules */

.text-area .section-description {
    font-size: 16px;
    font-weight: 200;
}

.section-title {
    font-family: 'play-bold';
    font-size: 36px;
    padding-top: 20px;
}

.section-content {
    font-size: 22px;
    font-weight: 400;
    padding-top: 20px;
    padding-bottom: 20px;
}

.text-area .section-paragraph,
.section-paragraph a {
    color: rgba(0, 0, 0, 0.521);
}


/* Tablets and under */

@media(max-width: 1200px) {
    .container {
        width: 80%;
        padding: 20px 20px;
    }
    .grid-2 {

        display: block;
    }
    .text-area {
        padding-top: 20px;
    }
}