﻿
/* index.html */


.body_index {
    font-family: Arial;
    margin: 0;
}

.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: darkslategrey;
    height: 2vw;
    color: white;
    text-align: center;
}

.button {
    border: none;
    color: white;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 3vw;
    transition-duration: 0.4s;
    cursor: pointer;
}

.button1 {
    background-color: greenyellow;
    color: black;
    border: 2px solid #4CAF50;
}

.button1:hover {
    background-color: #4CAF50;
    color: white;
}

/* About me */
.icon {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.section_AboutMe {
    width: 800px;
    height: auto;
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    font-size: 20px;
    text-align: center;
}

.info {
    text-align: left;
    font-size: 30px;
    color: darkblue;
}

.text {
    text-align: left;
    font-size: 25px;
}

.dropbtn {
    background-color: black;
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #ddd;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
    background-color: grey;
}
/*
.GradientBg {
    background-image: linear-gradient(to top, rgba(0,255,0,0), rgba(0,255,0,1));
}*/


/* Games */
.section_GamesProjects {
    width: 100%;
    text-align: center;
}


.title_specific {
    text-align: center;
    font-size: 50px;
    font-weight: bold;
    color: maroon;
    text-decoration: dashed;
    text-align: center;
}

.content_img {
    position: relative;
    float: left;
    width: 45%;
    height: auto;
    margin-left: 2px;
}

.content_img div {
    position: absolute;
    bottom: 0;
    right: 0;
    background: lightblue;
    color: white;
    font-family: sans-serif;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: visibility 0s, opacity 0.5s linear;
    transition: visibility 0s, opacity 0.5s linear;
}

/* Hover on Parent Container */
.content_img:hover {
    cursor: pointer;
}

.content_img:hover div {
    width: 100%;
    padding: 0% 0px;
    visibility: visible;
    opacity: 0.8;
}

.responsive {
    max-width: 50%;
    height: auto;
}

/* Specific projects: My city life */
.mainImg {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.actors_img {
    margin: 10px 15px 10px 15px;
}

/* Specific projects: Pencil rendering techniques */
.step_img {
    margin: 1px 15px 1px 15px;
}

.video_pencilRendering {
    width: 50%;
    float: left;
    margin: 1px 150px 1px 15px;
    z-index: 0;
    position: relative;
}

.specialNextToVideo {
    text-align: left;
    font-size: 25px;
    margin-left: 360px;
    margin-top: 20px;
    z-index: 1;
    position: absolute;
}

#specific_video {
    margin-right: -600px;
}