html, body{
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

* {
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

/* width */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0);
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #107797;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #0a1a6c;
}

body{
    background: #000000;
}


section{
    display: block;
    padding-bottom: 30px;
    text-align: center;
    margin-top: 30px;
}

footer{
    display: block;
    text-align: center;
    padding-top: 80px;
    padding-bottom: 80px;
    border-top: 1px solid #4b4a4a;
}

.head{
    width: 100%;
}

.redirectsHolder{
    margin: 30px auto;
}

.redirects{
    text-decoration: none;
    color: white;
    margin-left: 5px;
    margin-right: 5px;
    font-family: "Roboto Light", monospace;
}

.redirects img{
    height: 50px;
}

.footerDiv{
    padding-left: 10px;
    padding-right: 10px;
    width: 30%;
    display: inline-block;
    vertical-align: top;
    margin: 0;
}

.companyLogo{
    width: 100px;
}

.aboutShort{
    display: block;
    color: #6a6868;
    cursor: default;
    font-family: "Roboto Light", monospace;
}

.rights{
    margin-top: 20px;
    padding-left: 30px;
    padding-right: 30px;
    text-align: left;
    color: #6a6868;
    font-family: "Roboto Light", monospace;
}

.socialIcons {
    padding-left: 10px;
    padding-right: 10px;
    text-decoration: none;
}

.socialIcons img{
    width: 30px;
    transition: 0.3s;
}

.footerHead{
    display: block;
    text-decoration: underline;
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 20px;
    font-family: "Roboto Light", monospace;
    cursor: default;
}

.companySectionRedirect{
    display: block;
    text-decoration: none;
    color: white;
    font-size: 17px;
    padding-top: 5px;
    padding-bottom: 5px;
}

.companyLastPart{
    cursor: default;
    font-family: "Roboto Light", monospace;
    color: white;
    margin: 0;
    padding-top: 5px;
    padding-bottom: 5px;
}

.email{
    color: white;
}

.item{
    display: block;
    width: 90%;
    border: 1px solid grey;
    text-align: center;
    margin: 10px auto auto;
}

@media screen and (max-width: 679px){
    .footerDiv{
        width: 320px;
        margin: 20px;
    }
}

.gameDescLong{
    color: white;
    padding-left: 14px;
    padding-right: 14px;
    text-align: left;
}

.gameDescShort, .gameDeveloper{
    color: white;
    font-family: "Roboto Light", monospace;
    text-align: left;
    padding-left: 14px;
    padding-right: 14px;
}

.gameDescShort{
    text-align: center;
}

.gameTitle{
    color: white;
    font-family: Amiri, monospace;
    font-size: 20px;
}

.previewsHolder{
    width: 100%;
    overflow: auto;
    white-space: nowrap;
    margin-top: 5px;
    margin-bottom: 5px;
}

.previewsHolder img{
    margin-left: 5px;
    margin-right: 5px;
    height: 400px;
}

@media screen and (min-width: 1280px) and (min-height: 490px){

    .item{
        display: inline-block;
        width: 40%;
        margin-left: 5px;
        margin-right: 5px;
        vertical-align: top;
    }

    .email:hover{
        color: #107797;
    }

    .socialIcons img:hover{
        transform: scale(1.1);
        animation: shake 0.6s;
        animation-iteration-count: infinite;
    }

}

@keyframes shake {
    0% { transform: rotate(0deg); }
    14% { transform: rotate(2deg); }
    28% { transform: rotate(4deg); }
    42% { transform: rotate(2deg); }
    56% { transform: rotate(0deg); }
    70% { transform: rotate(-2deg); }
    80% { transform: rotate(-4deg); }
    100% { transform: rotate(-2deg); }
}

