body {
    margin: 0;
    background-image: url('assets/screenshot.png');
    background-size: cover;
    background-attachment: fixed;
}
select#languages {
    border: none;
    border-radius: 4px;
    padding: 3px;
    margin-left: 3px;
    color: #707070;
}
.container {
    overflow: scroll;
    display: flex;
    height: 100vh;
    width: 600px;
    background-color: #f0f0f0;
    flex-direction: column;
    justify-content: center;
}
.container::-webkit-scrollbar {
    display: none; /* Chrome Safari */
}
.container::after {
    content: '';
    height: 100vh;
    position: absolute;
    top: 0;
    margin-left: 600px;
    width: calc( 100% - 600px );
    background: linear-gradient(to left, transparent, #f0f0f0);
    pointer-events: none;
}
.inside-container {
    margin: 5em;
}
.download-area {
    padding-top: 10px;
}
.github-tip {
    padding: 1.4em 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.github-small {
    width: 1.5em;
    height: 1.5em;
    cursor: pointer;
    padding: .2em;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    border-radius: .6em;
    background: rgba(63, 63, 63, 0.075);
    -webkit-transition: background-color .2s;
    transition: background-color .2s;
}
.github-small:hover {
    background: rgba(63, 63, 63, .15);
}
.star {
    margin-left: 1em;
    opacity: .5;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: opacity .2s;
    transition: opacity .2s;
}
.star:hover {
    opacity: 1;
}
.download-container {
    width:14rem;
    height:2rem;
    cursor:pointer;
    padding: 1em;
    background: rgba(136, 136, 136, .075);
    border-radius: .5em;
    -webkit-transition: background-color .2s;
    transition: background-color .2s;
    -webkit-box-shadow: 2px 3px 7px rgba(19, 19, 19, .015);
    box-shadow: 2px 3px 7px #13131326;
    margin: .5em 0;
}
.download-container:hover {
    background: rgba(136, 136, 136, .15);
}
.download-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.download-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dropdown {
    position: relative;
    display: inline-block;
}
.dropdown-content {
    visibility: hidden;
    padding: 5px;
    opacity: 0;
    transform: translateY(-20px);
    border-radius: .5em;
    position: absolute;
    right: -15px;
    background-color: #f1f1f1;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    transition: all .2s;
}
.dropdown-subcontent {
    visibility: hidden;
    padding: 5px;
    opacity: 0;
    transform: translateY(20px);
    border-radius: .5em;
    position: absolute;
    right: -80px;
    top: 15px;
    background-color: #f1f1f1;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    transition: all .2s;
}
.dropdown-content a, .dropdown-subcontent a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    border-radius: .5em;
    display: block;
    transition: all .2s;
}
.dropdown-content a:hover, .dropdown-subcontent a:hover
{
    background-color: #ddd;
}
.dropdown:hover .dropdown-content, .dropdown-subtitle:hover .dropdown-subcontent
{
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}




.none-select {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.my-link {
    color: #595959;
    text-decoration: none;
}

a.my-link:link,
a.my-link:hover {
    color: #595959;
}

/* Small screen */
@media (max-width: 600px) {
    body {
        background-image: none;
    }
    .container {
        width: 100%;
    }
    .container::after {
        display: none;
    }
    .inside-container {
        margin: 2em;
    }
}