/**************************************************************************
CSS for the home page of the website
**************************************************************************/

* {

    margin: 0;
    padding: 0;

}

*:focus {

    outline: none;

}

html {

    scroll-behavior: smooth;
    font-size: 22px;
    /* overflow-x: hidden; */
    min-height: 100dvh;
    
}

body{

    /* background-color: #173347; */
    min-height: 100dvh;
    width: 100vw;
    /* background-color: #173347; */
    /* background-image: radial-gradient(circle, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%); */
    /* background-position: center center; */
    background: linear-gradient(300deg, #4f088c, #280950, #190534, #370d6d);
    background-size: 240% 240%;
    animation: gradient-shift 20s ease infinite;
    overflow-x: hidden;

}

  .animated-gradient {
      background: linear-gradient(45deg, #410773, #280950);
      background-size: 200% 200%;
      animation: gradient-shift 3s ease infinite;
  }

  @keyframes gradient-shift {
      0% {
          background-position: 0% 50%;
      }

      50% {
          background-position: 100% 50%;
      }

      100% {
          background-position: 0% 50%;
      }
  }

::-webkit-scrollbar {
    width: 6px;
    background-color: rgba(0, 0, 0, 0.1);
}

/* Track */
::-webkit-scrollbar-track {
    /* box-shadow: inset 0 0 5px rgb(0, 0, 0);
    border-radius: 20px; */
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #818181;
    border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #6c6c6c;
}

.bodyContainer{

    height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

}

.homeImg{

    width: clamp(300px, 85vw, 1000px);
    /* transform: 
            perspective(5000px)
            rotateY(var(--rotateY))
            rotateX(var(--rotateX)); */

    filter: drop-shadow(20px 20px 2px rgba(0, 0, 0, 0.1));

}

.buttonContainer{

    width: clamp(320px, 100%, 800px);
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    margin-top: 0px;
    padding-top: 40px;
    padding-bottom: 10px;
    font-family: "neuropol-nova", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 1.1rem;

}

.buttonContainer a{

    text-decoration: none;

}
@media screen and (max-width: 1635px) {

    .homeImg {

        width: clamp(300px, 100vw, 800px);

    }

}

@media screen and (max-width: 1025px) {

    html {

        font-size: 20px;

    }
}

@media screen and (max-width: 750px) {

    .homeImg {

        width: clamp(300px, 90vw, 785px);

    }
    
}

@media screen and (max-width: 600px) {

    .buttonContainer{

        flex-direction: column;

    }

    .buttonContainer a:first-of-type{

        padding-bottom: 15px;

    }

}

@media screen and (max-width: 426px) {

    html {

        font-size: 17px;

    }
}

@media screen and (max-height: 550px) and (min-width: 321px) {

    .homeImg {
    
        width: clamp(425px, 90vw, 550px);
    
    }
}