@import url('/css/Fonts/WEB/css/supreme.css');

:root {
    --primary-color: #080808;
    font-family: Supreme-Regular;
     --font-size: 16px;
    --spacing: 1rem;
    --white:         #f5f5f5fa;
    --white-dim:     #c1bebee4; 
    --pink:          #FF2D8B;
    --pink-light:    #FF6BB3;
    --pink-dark:     #352a2a; 
  }

body  {
    background:#383863;
    background: linear-gradient(to right, #9494cf, #242446);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 3rem 2rem;
    gap: 2.5rem;
    /* font-family:'DM Sans', sans-serif; */
    font-weight: 525;
  }

  p, footer {
  font-size: var(--font-size);
  line-height: 150%;
  justify-items: center;
      letter-spacing: 0;

  }
  img {
      border-radius: 17.5px 17.5px 
      17.5px 17.5px; 
  }
  a {
    color: var(--white);
    text-decoration: none;
  }

  h1 {
    font-size: 48px;
    font-family: Supreme-Bold;
    font-weight: bold;
    color: var(--white);
  }
  h2, h3, p, span {
    font-family: Supreme-Italic;
    letter-spacing: 0;
    line-height: 1.5em;
    color: var(--white);
    justify-items: center;
    
  } 
.services {
  margin-left: 25px;
}
.portfolio-title{
  font-family: Supreme-Bold;
  margin-top: 5%;
  justify-items: center;
}
  .slogan{
    justify-items: center;
    overflow: hidden; 
    border-right: .15em solid rgb(255, 255, 255); 
    white-space: nowrap; /* Keeps text on a single line */
    margin: 0 auto; 
    letter-spacing: .15em; 
    width: 0; /* Starts hidden */
    animation: 
    typing 1.5s steps(30, end) forwards,
    blink-caret .75s step-end infinite;
  }

  @keyframes typing {
        from { width: 0 }
        to { width: 100% }
    }

    @keyframes blink-caret {
        from, to { border-color: transparent }
        50% { border-color: rgb(255, 255, 255); }
    }
.PortfolioDiv {
  display: flex;
  justify-content: space-between;
  max-height: 325px;
}

#Site1, #Site2 {
  display: flex;
  flex-direction: column;
  position: relative;
  justify-content: flex-end;
  align-items: flex-start;
  /* background-color: var(--white-dim); */
}

#Site1:hover, #Site2:hover {
  cursor: pointer;
  position: relative;
  display: inline-block;
}

#Site2:hover .hidden-element {
  display: block;
  opacity: 1;
}

.popup-box-1, .popup-box-2 {
  visibility: hidden;
  transform: translateY(0px);
  /* bottom: 0;  */
  /* top: -100px; */
  /* left: 0; */
  max-width: 325px;
  height: 100%;
  transition: transform 0.5s ease;
  height: 250px;
  flex-grow: 1;
  opacity: 1;
  z-index: 1;
  background-color: #a99393; 
  outline: none;

}

#Site1:hover .popup-box-1  {
  visibility: visible;
  transform: translateY(-250px);

}

#Site2:hover .popup-box-2  {
  visibility: visible;
  transform: translateY(-250px);
}

ul {
  margin-bottom: 75px;
}
li {
  margin-bottom: 20px;
  color: var(--white);
}
li::marker {
  color: #c9d33e;
  font-size: 1.2em;
  gap: 25px;
}

li.star::marker {
  content: "»";
  margin-right: 10px;
}

.contact-div{
  display: flex;
  flex-direction: row;
  gap: 350px;
  /* margin-top: 25px; */
  margin-bottom: 75px;
  justify-content: space-between;
  
}

