@font-face {
    font-family: 'Avenir Next LT Pro Bold';
    font-style: normal;
    font-weight: normal;
    src: local('Avenir Next LT Pro Bold'), url('/static/AvenirNextLTPro-Bold.woff') format('woff');
}

body {
    overflow-x: hidden;
}

.logo {
    font-family: "PT Mono";
    font-weight: bold;
    font-size: 30px;
    color: black;
}

#main-video {
    max-width: 950px;
    margin-top: -20px;
    margin-left: 25px;
}

@media only screen and (max-width: 600px) {
    body {
        overflow-x: hidden;
    }
    .headline {
        font-size: 40px;
    }
    #content-container {
        overflow-x: hidden;
    }
    #main-video {
        min-width: 200%;
        margin-left: 310px;
    }
}

#termynal {
    /*width: 800px;*/
    /*min-height: 500px;*/
    width: 800px;
    min-height: 200px;
    font-size: 20px;
}

[data-ty="input"] {
    color: #ffffff;
}

.ptmono {
    font-family: "PT Mono";
}

.avenir {
    font-family: "Avenir Next LT Pro Bold";
}

.shad {
    /*box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.034),*/
    /*0 6.7px 5.3px rgba(0, 0, 0, 0.048),*/
    /*0 12.5px 10px rgba(0, 0, 0, 0.06),*/
    /*0 22.3px 17.9px rgba(0, 0, 0, 0.072),*/
    /*0 41.8px 33.4px rgba(0, 0, 0, 0.086),*/
    /*0 100px 80px rgba(0, 0, 0, 0.12);*/
    box-shadow: 0 22px 30px 4px rgba(0, 0, 0, 0.36);
}

.feature {
}

.featurette-divider {
    margin: 60px 0 60px 0;
}

.feature-img {
    max-width: 100%;
}

.code-example {
    font-family: "PT Mono";
    font-size: 20px;
    font-weight: bold;
}

h1 {
    font-family: "Avenir Next LT Pro Bold";
}

h2 {
    font-family: "Avenir Next LT Pro Bold";
}

.main {
    margin-top: 40px;
    padding-bottom: 100px;
}

.phrase {
    text-align: center;
    font-weight: bold;
    font-size: 50px;
}

.screenshot {
    display: block;
    width: 50%;
    text-align: center;
}

.code {
    padding: 20px;
    background-color: #e8e8e8;
    font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-weight: bold;
    font-size: 20px;
    border-radius: 10px;
}

.os {
    min-height: 400px;
    font-size: 19px;
}

.os img {
    max-height: 70px;
}

.binaries {
    margin-top: 30px;
    text-align: left;
    font-size: 19px;
}

.os-logo {
    max-width: 150px;
    max-height: 80px;
}

.lead {
    font-size: 1.2rem;
    font-weight: 400;
    color: #495057;
}

.pricing {
    min-height: 300px;
}

pre {
   /*font-size: 20px;*/
}

.loader {
    position: absolute;
    width: 100%;
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid gray; /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}