﻿/********** Variables **********/
 

/*** Reset styles ***/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-size: 16px;
}

/*** General styles ***/

.rounded {
  border-radius: 25px;
}

body {
  background-color: black;
  font-family: Gloria Hallelujah, cursive;
  color: #eee;
}




/*** Header ****/
header {
  width: 100%;
  height: 100%;
}

#nametitle {
  position: absolute;
  width: 100%;
  margin: auto;
  top: 40vh;
  z-index: 100;
}


#name, #tagline {
  text-shadow: 4px 4px 4px #222;
  text-align:center;
}




/*** Welcome section ***/
#welcome-section {
  width: 100%;
  height: 100vh;
  position: relative;
  top: var(--navbar-height);
  overflow: hidden;
  border-radius: 0;
  z-index: -1000;
  margin-bottom: 50px;
}

#welcome-section video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translateX(-50%) translateY(-50%);
  background-size: cover;

  filter: grayscale(75%) sepia(30%);
}

/*** Presentation ***/
#presentation {
  color: #eee;
  background-color: black;
  margin: 35px 30px 30px;
  padding: 20px;
  text-align:center;
}

#presentation-title {
  text-shadow: 4px 4px 4px #222;
  text-align:center;
}

#profile-image {
  border-radius: 50%;
  max-width: 190px;
  float: left;
  margin: -35px 40px 0px 30px;
}

/*** Portfolio ***/
#projects {
  display: grid;
  grid-template-columns: 32% 32% 32%;
  grid-gap: 2%;
  background-color: #444;
  color: #222;
  margin: 20px 30px 10px 30px;
  padding: 20px;

}

#portfolio-title {
  grid-column: 1 / span 3;
  text-shadow: 4px 4px 4px #111;
}

.project-tile {
  margin-bottom: 20px;
}

.project-tile a {
  color: #222;
}

.project-tile a:hover {
  color: #333;
}

.project-tile img {
  width: 100%;
}

[id^=cell] {
  border-style: solid;
  border-width: 10px;
  border-radius: 10px;
}

[id$=desc] {
  color: #eee;
  font-size: 1em;
}

[id$=sub] {
  color: #aaa;
  font-size: 10px;
}

/*** Contact ***/
#contact {
  background-color: #333;
  padding: 20px;
  margin: 30px 30px 70px;
}

#contact-title {
    text-shadow: 4px 4px 4px #000;
}

/*portfolio coding start*/


/*portfolio coding End*/