@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
/* header{
    background-color: #03c0c6;
    border-radius: 2rem;
    width: 800px;
    padding: .5rem;
} */
body {
  background: #eeeeee;
  font-family: "Montserrat", sans-serif;
}

.navMenu {
    
    /* background-color: #ddc019; */
    width: 600px;
    border-radius: 1rem;
    padding: 1rem;
    margin-bottom:1rem;
    float: left;
}


.navMenu a {
  color: #181818;
  text-decoration: none;
  text-align:center;
  font-size: 1.2em;
  text-transform: uppercase;
  font-weight: 400;
  display: inline-block;
  width: 80px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;

}
.myName{
    padding: .6rem;
    margin-right: -.2rem;
    display: inline;
    font-size: 1.4rem;
    text-transform: uppercase;
    font-weight: 600;
}

.myName:hover{
    
    color: white;
    background-color: #ddc019;
    border-radius: 1rem;
}


.navMenu .current {
    color: #141414;
    -webkit-text-fill-color: #0c585f;
    /* -webkit-text-stroke: .5px black; */


}


.navMenu a:hover {
    color: #0c585f;
    /* -webkit-text-fill-color: #ddc019;
    -webkit-text-stroke: .5px black; */
}

.navMenu .dot {
  width: 26px;
  height: 2px;
  background: #0c585f;
  border-radius: 10%;
  opacity: 0;
  -webkit-transform: translateX(30px);
  transform: translateX(30px);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.navMenu .nowHome {
    -webkit-transform: translateX(244px);
    transform: translateX(244px);
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    opacity: 1;
}
.navMenu .nowPhoto {
    -webkit-transform: translateX(330px);
    transform: translateX(330px);
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    opacity: 1;
}

.navMenu .nowMusic {
    -webkit-transform: translateX(410px);
    transform: translateX(410px);
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    opacity: 1;
}
.navMenu .nowDesign {
    -webkit-transform: translateX(500px);
    transform: translateX(500px);
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    opacity: 1;
}

.navMenu a:nth-child(2):hover ~ .dot {
  -webkit-transform: translateX(244px);
  transform: translateX(244px);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  opacity: 1;
  color:#0c585f;
}

.navMenu a:nth-child(3):hover ~ .dot {
  -webkit-transform: translateX(330px);
  transform: translateX(330px);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  opacity: 1;
  color:#0c585f;
}

.navMenu a:nth-child(4):hover ~ .dot {
  -webkit-transform: translateX(410px);
  transform: translateX(410px);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  opacity: 1;
  color:#0c585f;
}

.navMenu a:nth-child(5):hover ~ .dot {
  -webkit-transform: translateX(496px);
  transform: translateX(496px);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  opacity: 1;
  color:#0c585f;
}

body {
    margin: 20px;
    padding: 0;

  }
  .contentUp{
    display: inline;
    height: 20px;
    object-fit: scale-down;
  }
  .title{
    color:white;
    text-align: left;
  }
  .homepage{
    width: auto;
    float: right;
    margin-top: .2rem;
    margin-bottom: 1rem;
    padding-right: .2rem;
    /* background-color: #e1e1e1; */
    /* border-radius: 1rem; */
    /* border-top: 2px solid black; */
    
  } 
  .homepageDown{
    width: auto;
    display: inline;
    margin-top: 20px;
   
    border-bottom: 2px solid black;
  } 
  .container{
    display: grid;
    grid-template-columns: repeat(6,1fr);
    grid-auto-rows: 100px 300px;
    grid-gap: 10px;
    grid-auto-flow: dense;
    text-align: center;
    float: right;
  }
  
  .gallery-item{
    width: 100%;
    height: 100%;
    position: relative;
  }
  
  .gallery-item .image{
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  
  .gallery-item .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    cursor: pointer;
    transition:.5s ease-in-out;
  }
  
  .gallery-item:hover .image img{
    transform: scale(1.3);
  }
  
  .gallery-item .text{
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    color: white;
    font-size: 15px;
    pointer-events: none;
    z-index: 4;
    transition: .3s ease-in-out;
    -webkit-backdrop-filter: blur(5px) saturate(1.8);
    backdrop-filter: blur(5px) saturate(1.8);
    border-radius: 2rem;
  }
  
  .gallery-item:hover .text{
    opacity: 1;
    animation: move-down .3s linear;
    padding: .5em;
    width: auto;
    background-color: rgba(0, 0, 0, 0.497);
  }
  
  .w-1{
    grid-column: span 1;
  }
  
  .w-2{
    grid-column: span 2;
  }
  
  .w-3{
    grid-column: span 3;
  }
  
  .w-4{
    grid-column: span 4;
  }
  
  .w-5{
    grid-column: span 5;
  }
  
  .w-6{
    grid-column: span 6;
  }
  
  .h-1{
    grid-row: span 1;
  }
  
  .h-2{
    grid-row: span 2;
  }
  
  .h-3{
    grid-row: span 3;
  }
  
  .h-4{
    grid-row: span 4;
  }
  
  .h-5{
    grid-row: span 5;
  }
  
  .h-6{
    grid-row: span 6;
  }
  
  @media screen and (max-width:500px){
    .container{
      grid-template-columns: repeat(1,1fr);
    }
    .w-1,.w-2,.w-3,.w-4,.w-5,.w-6{
    grid-column:span 1;
    }
    
    .h-1,.h-2,.h-3,.h-4,.h-5,.h-6{
    grid-row: span 3;
    }
  }
  
  
  
  @keyframes move-down{
  
    0%{
      top: 10%;
    }
    50%{
      top: 35%;
    }
    100%{
      top: 50%;
    }
  }

  .aboutMe{
    position: relative;
    overflow: hidden;
    width: 600px;
    height: 4rem;
    margin-bottom: .5rem;
    text-align: right;
    float: right;
    

  }

  #slide{
    position: absolute;
    left: 600px;
    width: 600px;
    height: 4rem;
    -webkit-animation: slide 0.5s forwards;
    -webkit-animation-delay: 2s;
    animation: slide 0.5s forwards;
    animation-delay: 1s;
  }

@-webkit-keyframes slide {
    100% { left: 0; }
}

@keyframes slide {
    100% { left: 0; }
}

.spotify{
    max-width: 10%;
    max-height: 10%;
    float: right;
}

