body{
    font-family: 'Open Sans', sans-serif;
    background-color: black;
    overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Open Sans" sans-serif;
}

.header {
    backdrop-filter: blur(5px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 100px;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.logo{
    width: 2%;
    cursor: pointer;
}

.navbar a{
    position: relative;
    font-size: 18px;
    color: white;
    font-weight: 510;
    text-decoration: none;
    margin-left: 35px;
}

.navbar a::before{
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: .3s;
}

.navbar a:hover::before{
    width: 100%;
}

.parallax{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

#text{

    position: absolute;
    font-size: 3cm;
    color: rgba(255,255,255,0.8);
    top: 300px;
}

.parallax img{
    position: absolute;
    pointer-events: none;
}

#Background {
    top: 0;
    left: 0;
    width: 100%;
}
#Cat {
    top: 350px;
    left: 480px;
    width: 27%;
}

.player{
    background-color: black;
}

.player h1{
    color: aliceblue;
    margin-left: 35px;
    font-size: 1.3cm;
}

#playerimage{
    width: 40%;
    float: right;
    margin-right: 20px;
    border-radius: 30px;
}

.player p{
    color: aliceblue;
    margin-left: 37px;
    font-size: 0.5cm;
}

.player ul{
    color: aliceblue;
    margin-left: 57px;
    font-size: 0.7cm;
}

@keyframes appear {
    from{
        opacity: 0;
        scale: 0.5;
    }
    to{
        opacity: 1;
        scale: 1;
    }
}

.player h1 {
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
}

.player p {
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
}

.player ul {
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
}

.content{
    width: 100%;
    height: 100hv;
    background: #fff;
    position: relative;
    padding: 0 4em;
    
}

.button {
    text-align: center;
}


.btn{
    margin: 100px;
    padding: 15px 40px;
    border: none;
    outline: none;
    color: #FFF;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 12px;
}

.btn::after {
    content: "";
    z-index: -1;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #333;
    left: 0;
    top: 0;
    border-radius: 10px;
}


.btn::before {
    content: "";
    background: linear-gradient(
      45deg,
      #FF0000, #FF7300, #FFFB00, #48FF00,
      #00FFD5, #002BFF, #FF00C8, #FF0000
    );
    position: absolute;
    top: -2px;
    left: -2px;
    background-size: 600%;
    z-index: -1;
    width: calc(100% + 4px);
    height:  calc(100% + 4px);
    filter: blur(8px);
    animation: glowing 20s linear infinite;
    transition: opacity .3s ease-in-out;
    border-radius: 10px;
    opacity: 0;
}
  
@keyframes glowing {
    0% {background-position: 0 0;}
    50% {background-position: 400% 0;}
    100% {background-position: 0 0;}
}
  

.btn:hover::before {
    opacity: 1;
}
  
.btn:active:after {
    background: transparent;
}
  
.btn:active {
    color: #000;
    font-weight: bold;
}

#imagetrack > .image {
    width: 40vmin;
    height: 56vmin;
    object-fit: cover;
    object-position: center;
}

#imagetrack{
    display: flex;
    gap: 4vmin;
    position: absolute;
    left: 60%;
}

#quote{
    text-align: center;
    font-size: 2cm;
    color: rgba(255,255,255,0.8);
    top: 300px;
}