body, html { font-family: 'Open Sans', sans-serif; background-color: #2D2D2D; color: #F6F6F6; font-weight: bolder; margin: 0 auto; padding: 0; } .name { opacity: 0; position: absolute; left:7vw; top: 5vh; font-size: 3vh; padding: 10px; background-color: lightgrey; color:black; border-radius: 20px; transition: opacity .25s ease-in-out; -moz-transition: opacity .25s ease-in-out; -webkit-transition: opacity .25s ease-in-out; } .profile-img { margin: 10px; max-width: 5vw; border-radius: 50%; border: 0.20vw solid #4F4F51; -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.75); -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.75); box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.75); } .profile-img:hover + .name { opacity: 1; transition: opacity .25s ease-in-out; -moz-transition: opacity .25s ease-in-out; -webkit-transition: opacity .25s ease-in-out; } .status { position: absolute; right:5vw; top: 6vh; font-size: 3vh; } .status span { margin-right: 10px; } hr { color: #FFFFFF; width: 99vw; } .games { margin-top: 10vh; padding-left: 5%; display: flex; overflow: auto; } .project { margin: 10px; /*background-color: white;*/ height: 37vh; text-align: center; } .project-img { max-width: 30vh; -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.75); -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.75); box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.75); } .projectname { color: #34ABE5; opacity: 0; transition: opacity .25s ease-in-out; -moz-transition: opacity .25s ease-in-out; -webkit-transition: opacity .25s ease-in-out; } .project:hover .projectname { opacity: 1; transition: opacity .25s ease-in-out; -moz-transition: opacity .25s ease-in-out; -webkit-transition: opacity .25s ease-in-out; } .buttons { display: flex; justify-content: center; margin-top: 10vh; margin-bottom: 5vh; text-align: center; } .button { margin: 0 0.5vw; background-color: #505050; width: 75px; height: 75px; border: 1px solid #4F4F51; font-size: 8vh; border-radius: 50%; -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.75); -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.75); box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.75); } a { text-decoration: none; color: #F6F6F6 ; }