
body
{
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background: #000;
    scroll-behavior: smooth;
    position: center;
}

html {
    scroll-behavior: smooth;
    scroll-behavior: auto;
  }

section
{
    position: relative;
    height: 100vh;
    width: 100%;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

section:before
{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00adff;
    z-index: 1;
    mix-blend-mode: color;
    animation: animate 10s linear infinite;

}

@keyframes animate
{
    0%
    {
        filter: hue-rotate(0deg);
    }
    100%
    {
        filter: hue-rotate(360deg);
    }
}

div
{
    max-width: 1000px;
}

.mydiv {
    color: rgb(165, 37, 80);
}
.hide {
    display: none;
  }
  
  .myDIV:hover + .hide {
    display: block;
    color: rgb(255, 255, 255);
  }

h1 {   
    font-family: helvetica;
    font-size: 35px;
    color: rgb(165, 37, 80);
    margin-left:70px ;
    border: 2px solid rgb(165, 37, 80);
    border-radius: 100px;
    padding-top: 8px;
    padding-bottom: 11px;
    padding-left: 40px;
    padding-right: 40px;
    width: fit-content;
    font-weight: 1;
    margin: 15px;
    }
  
  h1:hover{
    background-color: rgb(165, 37, 80);
    border: 1px solid rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    letter-spacing: 0vw;
  }


