/*General*/
html, body {
    height: 100%;
    background-color: #2d2929;
}

.wrapper {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

main {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

h1 {
    font-size: 3.6rem;
}

h2 {
    font-size: 3rem;
}

h3 {
    font-size: 2.6rem;
}

h4 {
    font-size: 2rem;
}

h5 {
    font-size: 1.6rem;
}

h6 {
    font-size: 1.4rem;
}

.sep {
    width: 50%;
    margin: 1rem auto;
}

.sep.dark {
    border-color: rgba(0, 0, 0, 0.07);
}

/*Helpers*/
.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 3rem;
}

.mt-5 {
    margin-top: 5rem;
}

.mt-8 {
    margin-top: 8rem;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

.mb-5 {
    margin-bottom: 5rem;
}

.mb-8 {
    margin-bottom: 8rem;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

@media (min-width: 60rem) {
    .text-md-center {
        text-align: center;
    }

    .text-md-left {
        text-align: left;
    }

    .text-md-right {
        text-align: right;
    }
}

.shadow {
    -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.2);
}

.bg-gray {
    background-color: #F3F3F3;
    color: #333;
}

.bg-dark {
    background-color: #343232;
}

.button {
    border-radius: 100px;
    font-size: 1.2rem;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all 200ms cubic-bezier(0.65, 0.05, 0.36, 1);
    -o-transition: all 200ms cubic-bezier(0.65, 0.05, 0.36, 1);
    transition: all 200ms cubic-bezier(0.65, 0.05, 0.36, 1);
}

.button:hover {
    -webkit-box-shadow: inset 0 3px 6px 0 rgba(0, 0, 0, 0.15);
    box-shadow: inset 0 3px 6px 0 rgba(0, 0, 0, 0.15);
}

.icon {
    margin-right: 0.5rem;
}

.button-red {
    background-color: #F94B4B;
    border-color: #e24848;
}

.align-items-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.opacity {
    opacity: 0.8;
    -webkit-transition: opacity 200ms ease-in-out;
    -o-transition: opacity 200ms ease-in-out;
    transition: opacity 200ms ease-in-out;
}

.opacity:hover {
    opacity: 1;
}

/*Sections*/

header {
    background: rgba(249, 75, 75, 0.85);
    color: #ffffff;
    padding: 1rem 0;
    text-align: center;
    -webkit-transition: background-color 200ms ease-in-out;
    -o-transition: background-color 200ms ease-in-out;
    transition: background-color 200ms ease-in-out;
}

header:hover {
    background: rgba(249, 75, 75, 1);;
}

header.big {
    padding: 8rem 0;
}

section, section.container {
    padding: 8rem 2rem;
}

.container-fluid {
    padding: 8rem 1rem;
    background-color: #1E1818;
    height: 100%;
}

/*Screenshot*/
#screenshot {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: -webkit-zoom-in;
    cursor: zoom-in;
    margin: auto;
}

#screenshot img {
    background-color: rgba(255, 255, 255, 0.08);
    padding: 0.5rem;
    border-radius: 0.5rem;
    -webkit-box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.3);
    margin: 1rem;
    display: block;
    flex-shrink: 0;
}

#screenshot.zoomed {
    display: block;
    cursor: -webkit-zoom-out;
    cursor: zoom-out;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}

#screenshot.zoomed img {
    max-width: none;
}

#screenshotWrapper.zoomed {
    min-width: -webkit-max-content;
    min-width: -moz-max-content;
    min-width: max-content;
}

/*Footer*/
footer {
    background-color: #181212;
    color: #908a93;
    padding: 1.5rem 0;
    text-align: center;
}
