
@import url('https://fonts.googleapis.com/css2?family=Pathway+Extreme:ital,opsz,wght@0,8..144,100..900;1,8..144,100..900&display=swap');


@property --gradient-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

body{
    background-color: #181516;
    font-family: 'Pathway Extreme';
    height: auto;
}

a{
    color: white;
}

.site-header{
    color: white;
    display: flex;
    padding: 16px 40px;
    
    border-bottom: 1px solid #ff4000a2;
    
    background-color: black;
    position: relative;
}

.header-container{
    width: 100%;
    max-width: 1264px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/************************************************* Header PSEUDO **/

.site-header::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: conic-gradient(from var(--gradient-angle) at 50% -1000%, #FF3F0000 44%, #FF3F00 50%, #FF3F0000 56%);
    animation: rotation 8s linear infinite;
    bottom: -2px;
    left: 0px;
    z-index: -1;
    transition: filter .4s ease-out;
}
.site-header::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: conic-gradient(from var(--gradient-angle) at 50% -1000%, #FF3F0000 44%, #FF3F00 50%, #FF3F0000 56%);
    animation: rotation 8s linear infinite;
    bottom: -2px;
    left: 0px;
    filter: blur(8px);
    z-index: -2;
    transition: filter .4s ease-out;
}

.site-header:hover::after{
    filter: blur(4px);
    transition: filter .4s ease-out;
}
/************************************************* ENDOF Header PSEUDO **/

.header-text-container{
    display: flex;
    gap: 8px;
}

.header-title{
    align-self: center;
    font-weight: 500;
}

.header-dot{
    align-self: center;
    font-weight: 300;
}

.header-subtitle{
    align-self: center;
    font-weight: 300;
}

.arrow-container{
    display: flex;
    flex-grow: 1;
    align-items: center;
    gap: 8px
}

.arrow-body{
    width: 100%;
    height: 1px;
    background: #FFFFFF;
    background: linear-gradient(90deg,rgb(255, 255, 255) 0%, rgb(27, 27, 27) 50%, rgb(255, 255, 255) 100%);
}

.arrow-icon{
    width: 16px;
    height: 16px;
}

button{
    position: absolute;
    right: 8px;
    top: 8px;
    height: 46px;
    width: 46px;
    display: flex;
    padding: 16px;
}

@media only screen and (max-width: 768px) {
    .site-header{
        padding: 16px 48px 16px 16px;
    }
    .header-container, .header-text-container{
        flex-wrap: wrap;
    }

    .header-text-container{
    gap: 8px;
    }
    .arrow-container {
    display: none;
    }

    .header-dot{
    display: none;
    }
}

@keyframes rotation {
  0% {
    --gradient-angle: 80deg;
  }
  100% {
    --gradient-angle: -80deg;
  }
}


.hero{
    display: block;
    margin: 0 auto;
}

.left, .right{
    position: absolute;
    z-index: -5;
    height: 100%;
}

.left{
    top: 0;
    left: 0;
}

.right{
    right: 0;
    top: 0;
}