html,
body {
  margin: 0;
  padding: 0;
  /* background-color:#f3f3f3 ; */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  overflow-x: hidden;
  background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
}

* {
  box-sizing: border-box;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  padding: 0 10%;
}

h1 {
  font-weight: 100;
  font-size: 5rem;
  color: #fff;
  cursor: pointer;
  transition: all 1s ease-in-out;
}

h1:hover {
  color: black;
}

/* a{
    padding:15px 25px;
    text-decoration: none;
    color: white;
    background:black;
    border-radius: 5px;
    max-width: 200px;
    text-align: center;
  } */

/*
  .my-face{
    display:grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto 1fr;
    grid-gap:10px;
  }

  .my-image{
    max-width: 300px;
    height:300px;
    border-radius:50%;
  }
*/

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.my-social {
  list-style: none;
  padding: 2% 0%;
  margin: 0;
}

.my-social li {
  display: inline; 
}

.my-social li a {
  text-decoration: none;
  color: black;
  font-size: 1em;
  padding: 30px 25px 0 0;
}

.message {
  font-size: 1.5rem;
}


.project-container {
  position: absolute;
  bottom:0%;
  left:0%; 
  width: 100%; 
  margin-left: -1rem;
}

.projects-slides { 
  margin-right: 0.5rem;
  background-color: rgb(255, 255, 255);  
  border-radius: 0.25rem;  
  padding: 0.5rem;
}


.slide-content {
  display: flex;
  flex-direction: row;
  text-decoration: none;
  align-items: center;
  color:black;
}

.slide-content img{
  width:2rem;
  height:2rem;
  border-radius:50%;
  margin:0.5rem;
} 

.slide-content .info h3{
  font-size: 1rem;
  line-height:0.75rem;
}

.slide-content .info p{
  font-size: 0.75rem;
  line-height:0.75rem;
}
 