html,body{
    margin:0;
    min-height: 100vh;
    /*background-color: #282c34;*/
    scroll-behavior: smooth;
}

.logo-container * {
    transition-duration: 0.3s;
    transition-timing-function: ease-out;
}

.logo-container{
    position: absolute;
    top:32px;
    pointer-events: none;
    color:white;
    font-weight: bold;
    margin-left: 32px;
    opacity: 1;
}

.logo-container > div{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

.logo-container > div > *{
    opacity: 0.5;
}

.logo-container > div h1{
    margin-left: 24px;
    font-weight: bold;
}

.logo-container span{
    margin-left: 32px;
    font-size: x-large;
}

.logo-container img{
    width: 64px;
    height: 64px;
    pointer-events: auto;
}

.logo-container img:hover + span, .logo-container img:hover{
    opacity: 1;
}

button.navbar-toggler{
    pointer-events: auto;
}

.canvas-wrapper{
    width:100%;
    top:0;
    height: 100vh;
}

.canvas-buttons-container{
    position: absolute;
    bottom:24px;
    right:0;
}

.canvas-buttons-container a{
    text-decoration: none;
    color: white;
}

.canvas-buttons-container > div{
    height: 72px;
    margin-right: 30px;
    text-align: end;
}

.canvas-buttons-container > div > a > *{
    margin-right: 24px;
    text-shadow: 0px 0px 30px white;
    color:white;
    font-weight: bold;
    font-size: xx-large;
    pointer-events: auto;
    user-select: none;
    transition-duration: 0.5s;
    transition-timing-function: ease-out;
}

.canvas-buttons-container .canvas-games-container > a:hover > *{
    text-shadow: 0px 0px 30px #81d4fa;
    color:#81d4fa;
}

.canvas-buttons-container .canvas-apps-container > a:hover > *{
    text-shadow: 0px 0px 30px #F36A15;
    color: #F36A15;
}

.canvas-buttons-container .canvas-contact-container > a:hover > *{
    text-shadow: 0px 0px 30px #4caf50;
    color:#4caf50;
}

.game-canvas{
    width:100%;
    height:100%;
}

.main{
    position: absolute;
    top:0;
    width: 100%;
    pointer-events: none;
}


.header-wrapper{
    width: 100%;
    position: absolute;
    top:0;
    background-color: #FFFFFF88;
}


.top-content{
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-content-wrapper{
    height: 100vh;
}

.content-wrapper{
    pointer-events: all;
}

.content{
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.games-wrapper{
    background: #282c34;
}

.apps-wrapper{
    background-color: whitesmoke;
}

.contact-wrapper{
    background-color: whitesmoke;
}

.content-title-div{
    display: flex;
    justify-content: center;
    margin:32px;
}

.app-card{
    padding-left: 0;
    padding-right: 0;
    margin-right: 16px;
    margin-left: 16px;
    -webkit-box-shadow: 0px 0px 8px 0px rgba(50, 50, 50, 0.75);
    -moz-box-shadow:    0px 0px 8px 0px rgba(50, 50, 50, 0.75);
    box-shadow:         0px 0px 8px 0px rgba(50, 50, 50, 0.75);
    border:none !important;
    overflow: hidden;
}

.zoom:hover {
    transform: scale(1.05);
}

.app-card-img-container{
    overflow: hidden;
    background-color: #282c34;
}

.app-card-img-container img{
    transition: transform 2.0s;
    transition-timing-function: ease;
}

.app-card .card-body{
    background-color: #282c34;
    color: white;
}

.card-bottom{
    display: flex;
}

.card-bottom-right{
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.card-container{
    margin-bottom:64px;
}

.card-text{
    height: 48px;    
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.content-title-div > h1{
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    /*
    color: #FFF;
    text-shadow: 0 0 10px #FFF;
    */
}

.content-title-div > h1:after{
    margin-left: 32px;
}
.content-title-div > h1:before{
    margin-right: 32px;
}

.content-title-div i{
    width: auto;
    text-align: center;
    font-size: 4rem;
}


.content-title-div > h1:after, .content-title-div > h1:before {
    display: inline-block;
    position: relative;
    height: 1px;
    content: " ";
    text-shadow: none;
}

.games-wrapper .content-title-div i{
    text-shadow: 0px 0px 30px #81d4fa;
    color:#81d4fa;
}

.apps-wrapper .content-title-div i{
    color: #fb8c00;
    text-shadow: 0 0 10px #fb8c00;
}

.contact-wrapper .content-title-div i{
    text-shadow: 0px 0px 30px #4caf50;
    color:#4caf50;
}

.content-title-div > h1:after, .content-title-div > h1:before{
    display: inline-block;
    position: relative;
    height: 1px;
    content: " ";
    text-shadow: none;
    width: 100%;
}

.apps-wrapper .content-title-div > h1:after, .apps-wrapper .content-title-div > h1:before {
    background-color: #fb8c00;
}

.games-wrapper .content-title-div > h1:after, .games-wrapper .content-title-div > h1:before {
    background-color: #81d4fa;
}

.contact-wrapper .content-title-div > h1:after, .contact-wrapper .content-title-div > h1:before {
    background-color: #81c784;
}

.games-wrapper .card-body{
    background-color: #637e8c;
}




.contact-form{
    background: #fff;
    margin-top: 10%;
    margin-bottom: 5%;
    width: 70%;
}
.contact-form .form-control{
    border-radius:1rem;
}
.contact-image{
    text-align: center;
}
.contact-image img{
    border-radius: 6rem;
    width: 11%;
    margin-top: -3%;
    transform: rotate(29deg);
}
.contact-form form{
    padding: 14%;
}
.contact-form form .row{
    margin-bottom: -7%;
}
.contact-form h3{
    margin-bottom: 8%;
    margin-top: -10%;
    text-align: center;
    color: #0062cc;
}
.contact-form .btnContact {
    width: 50%;
    border: none;
    border-radius: 1rem;
    padding: 1.5%;
    background: #dc3545;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
}
.btnContactSubmit
{
    width: 50%;
    border-radius: 1rem;
    padding: 1.5%;
    color: #fff;
    background-color: #0062cc;
    border: none;
    cursor: pointer;
}

#contact .name-surname-container, #contact .email-container{
    width: 100%;
}

#contact .name-surname-container{
    width: 100%;
    margin-right: 16px;
}

#contact .email-container{
    width: 100%;
    margin-left: 16px;
}

.contact-form-same-row{
    display: flex; 
    flex-direction: row;
}

.contact-submit-container{
    margin-top: 24px;
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}


@media (max-width:960px){
    .contact-form-same-row{
        flex-direction: column;
    }

    #contact .name-surname-container{
        margin-right: 0px;
    }
    
    #contact .email-container{
        margin-top: 24px;
        margin-left: 0px;
    }
    
    .content-title-div i {
        font-size: 2rem;
    }
    
    .canvas-buttons-container > div > a > * {
        font-size: x-large;
    }

    .canvas-buttons-container > div{
        margin-right: 0px;
        height: 60px;
    }

    .canvas-buttons-container{
        bottom:16px;
    }

    .logo-container span{
        margin-left: 16px;
        font-size: large;
    }
}