/* Navigation bar*/
  
  .navigationbar {
    float: right;
    display: flex;
    color: #253551;
    text-align: center;
    vertical-align: middle;
    padding: 50px 50px;
    text-decoration: none;
    
  }
  .navigationbarleft {
    float: left;
    display: block;
    color: #253551;
    text-align: center;
    padding-top: 50px;
    padding-left: 50px;
    text-decoration: none;
  }
  .navigationbarleft .linkedin {
    padding-left: 20px;
  }

  .emailButton {
    border: none;
    background: none;
    display: flex;
    color: #253551;
    text-align: center;
    align-items: center;
    font-family: "Nunito Sans", sans-serif;
    font-weight:bold;
    font-size: 18px;

  }
  .emailButton:hover {
    cursor: pointer;
  }
.buttonlabel{
  color: white;
  text-decoration: none;
}
  /* Scroll Arrow Pointing Down Start */
  .scroll-down {
    position: absolute;
    left: 50%;
    bottom: 30px;
    display: block;
    text-align: center;
    font-size: 20px;
    z-index: 100;
    text-decoration: none;
    text-shadow: 0;
    width: 50px;
    height: 50px;
    border-bottom: 3px solid #fff;
    border-right: 3px solid #fff;
    z-index: 9;
    left: 50%;
    -webkit-transform: translate(-50%, 0%) rotate(45deg);
    -moz-transform: translate(-50%, 0%) rotate(45deg);
    transform: translate(-50%, 0%) rotate(45deg);
    -webkit-animation: fade_move_down 4s ease-in-out infinite;
    -moz-animation:    fade_move_down 4s ease-in-out infinite;
    animation:         fade_move_down 4s ease-in-out infinite;
  }
  /*animated scroll arrow animation*/
  @-webkit-keyframes fade_move_down {
    0%   { -webkit-transform:translate(0,-10px) rotate(45deg); opacity: 0;  }
    50%  { opacity: 1;  }
    100% { -webkit-transform:translate(0,10px) rotate(45deg); opacity: 0; }
  }
  @-moz-keyframes fade_move_down {
    0%   { -moz-transform:translate(0,-10px) rotate(45deg); opacity: 0;  }
    50%  { opacity: 1;  }
    100% { -moz-transform:translate(0,10px) rotate(45deg); opacity: 0; }
  }
  @keyframes fade_move_down {
    0%   { transform:translate(0,-10px) rotate(45deg); opacity: 0;  }
    50%  { opacity: 1;  }
    100% { transform:translate(0,10px) rotate(45deg); opacity: 0; }
  }
  /* Scroll Arrow Pointing Down End */
  *{
    margin: 0;
    padding: 0;
}

  html{
    margin: 0;
    font-family: "Nunito Sans";
    padding: 0 0;
    border: 0 0;
    scroll-behavior: smooth;
}

.title {
    background-image: url("Toronto Skyline.jpg");
    background-position: center 100%;
    height: 100vh;
    width: 100%;
    position: relative;
    color: white;
    text-align: center;
}
.titletext {
    padding: 50vh 0;

    animation: fadeIn 2s;
}

table{
border-width: 10px;
table-layout: fixed;
}

.thtitle {
  text-align: center;
  width: 50%;
  border-width: 10px;
  
}

.titlebutton{
  background-color: transparent;
  border-color: white;
  border-style: solid;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  margin: 10px 10px;
  cursor: pointer;
  border-radius: 20px;
  color: white;
  font-family: 'Nunito Sans', serif;
  font-weight:bold;
  transition: 0.5s;
}

.titlebutton:hover{
  background-color: white;
  color: #253551;
  
}

.left-to-right-animation{
  animation: right_to_left 2s;
}

.educationimg{
  height: 20vh;
  
}
.technicalskills{
    background-color: rgba(0,0,0,0.77);
    color: #253551;
    text-align: left;
    padding: 70px;
    height: 100vh;
}
.experience{
    background-color: rgba(0,0,0,0.77);
    color: white;
    text-align: left;
    padding: 70px;
    height: 100vh;
}


.projects{
    background-color: rgba(0,0,0,0.77);
    color: #253551;
    text-align: left;
    padding: 70px;
    min-height: 100vh;

}

.wrap
{
  margin:50px auto 0 auto;
  width:100%;
  display:flex;
  flex-wrap: wrap;
  /* align-items:space-around; */
}
.tile
{
  width:350px;
  height:450px;
  margin:10px;
  background-color:#4D4D4D;
  background-size:cover;
  position:relative;
  cursor:pointer;
  transition: all 0.4s ease-out;
  box-shadow: 0px 35px 77px -17px rgba(0,0,0,0.75);
  overflow:hidden;
  color:white;
  border-radius: 25px;
}
.tile img
{
  height:100%;
  width:100%;
  position:absolute;
  top:0;
  left:0;
  z-index:0;
  transition: all 0.4s ease-out;
}
.tile .text
{
  position:absolute;
  padding:30px;
  height:calc(100% - 60px);
}
.tile h1
{
  font-weight:300;
  margin: 0 0 0;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}
.tile h2
{
  font-weight:100;
  margin: 75% 0 0 0;
  font-style:italic;
  transition: transform 0.4s ease-out, opacity 0.5s ease;
  transform: translateY(30px);
}
.tile p
{
  font-weight:300;
  margin:20px 0 0 0;
  line-height: 25px;
  transition-delay: 0.2s;
  transition: transform 0.4s ease-out, opacity 0.5s ease;
  transform: translateY(30px);
}
.animate-text
{
  opacity:0;
  transition: all 0.6s linear;
}
.tile:hover
{
box-shadow: 0px 35px 77px -17px rgba(0,0,0,0.5);
  transform:scale(1.05);
}
.tile:hover img
{
  opacity: 0.2;
}
.tile:hover .animate-text
{
  transform:translateX(0);
  opacity:1;
}

.tile:hover span
{
  opacity:1;
  transform:translateY(0px);
}

.projecttiles{
  display:flex;
  flex-wrap:wrap;
  justify-content: space-around;
}

@media (max-width: 1000px) {
  .wrap {
   flex-direction: column;
    width:400px;
  }
}

.aboutme{
    /* background-color: rgb(85, 82, 82); */
    background: rgba(0,0,0,0.77);
    color: #253551;
    text-align: left;
    padding: 70px;
    height: 100vh;
}
/* .aboutmetile{
  width: 45%;
  height:65%;
  margin-top: 5%;
  background-color: rgba(0,0,0,0.77);
  display:inline-block;
  background-size:cover;
  float: right;
  box-shadow: 0px 35px 77px -17px rgba(0,0,0,0.75);
  overflow:hidden;
  color:white;
  border-radius: 50px;
  max-width: 750px;
  min-width: 250px;
  max-height: 750px;
} */
.tileholder{
  width: 900px;
  display: flex;
  /* background-color: red; */
}

.skillcontainer{
  /* background-color: blue; */
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
}

.skilldescrip{
  width: 650px;
  height:70%;
  margin-top: 5%;
  background-color: rgba(0,0,0,0.77);
  display:inline-block;
  background-size:cover;
  box-shadow: 0px 35px 77px -17px rgba(0,0,0,0.75);
  overflow:hidden;
  color:white;
  border-radius: 50px;
  max-width: 750px;
  min-width: 250px;
  max-height: 750px;
}
.skilltileholder{
  /* background: purple; */
  height: 550px;
  width: 600px;
  margin-right: auto;
  display:flex;
  align-items: right;
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: 10px;
}

.skilltile {
  width: 100px;
  height: 100px;
  background-color: rgba(0,0,0,0.60);
  box-shadow: 0px 35px 77px -17px rgba(0,0,0,0.75);
  color:white;
  font-size: 13px;
  border-radius: 20px;
  transition: all 0.2s ease-in-out;
  flex-wrap: wrap;
  text-align: center;
  position: relative;
}
.skilltile:nth-child(2){
  align-self:flex-end;
}
.skilltile:nth-child(4){
  align-self: flex-end;
}
.skilltile:nth-child(7){
  align-self: flex-end;
}

.skilltile:nth-child(9){
  align-self: flex-end;
}
.skilltile:nth-child(12){
  align-self: flex-end;
}

.skilltile:nth-child(14){
  align-self: flex-end;
}

.skilltile:hover{
  transform: scale(1.1,1.1);

} 

.python {
  background-image: url("Python\ Logo\ -\ BW.png");

}

.footer{
  background-color: #253551;
    color: white;
    text-align: center;
    padding: 70px;
}

h1 {
    font-family: 'Nunito Sans', serif;
    font-size: max(50px, 4vw);
 }
h2 {
    font-family: 'Nunito Sans', serif;
    font-size: max(2px, 2vw);
}

h3 {
    font-family: 'Nunito Sans', serif;
    font-size: max(10px, 1.25vw);
}
h4 {
  font-family: 'Nunito Sans', serif;
  font-size: max(5px, 1vw);
  color: #343434;;
}

p {
    font-family: 'Nunito Sans', serif;
    font-size: max(3px, 1vw);
}
table{
  padding: 30px;
  width: 100%;
  text-align: center;
}
td{
  width: 50%
}
.technicaltable{
  padding: 100px;
  width: 100%;
  text-align: center ;
  vertical-align: text-top;
}
.technicaltdcol{
  list-style-type: none;
  width: 33%;
}
.technicalimg{
  width: 50%;
  height: 50%;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes right_to_left {
  from {
    margin-left: 100%;
  }
  to {
    margin-left: 0;
  }
}

body, html {
  height: 100%
}

.bgimg {
  /* Background image */
  background-color: #253551b7 ;
  background-image: url("Toronto Skyline.jpg");
  background-position: center 100%;
  height: 100vh;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
  /* Full-screen */
  height: 100%;
  /* Center the background image */
  background-position: center;
  /* Scale and zoom in the image */
  background-size: cover;
  /* Add position: relative to enable absolutely positioned elements inside the image (place text) */
  position: relative;
  /* Add a white text color to all elements inside the .bgimg container */
  color: white;
  /* Add a font */
  font-family: "Courier New", Courier, monospace;
  /* Set the font-size to 25 pixels */
  font-size: 25px;
}

/* Position text in the top-left corner */
.topleft {
  background-color: #064680;
  position: absolute;
  top: 0;
  left: 16px;
}

/* Position text in the bottom-left corner */
.bottomleft {
  position: absolute;
  bottom: 0;
  left: 16px;
}

/* Position text in the middle */
.middle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

/* Style the <hr> element */
hr {
  margin: auto;
  width: 100%;
}

.social-icon{
  color: white;
  transition: all .2s ease-in-out; 
}
.social-icon:hover{
  transform: scale(1.2);
}