@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

*{ 
    margin:0 ; padding : 0 ; 
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    transition:all 2s  ease ;
    scroll-behavior: smooth;
}

header{ 
    height:100vh;
    width : 100%;
    background: #ffffff;
    background-image: url("background.png")  ;
    background-repeat: no-repeat;
    background-size:cover ; 
    background-position:center ; 
    animation : back 10s linear infinite;
    position:relative ;
      
    
}
@keyframes back { 
    0%{ 
        background-position-x:0px ;
    }
    50%{
        background-position-x: 30px ; 
    }
    70%{
        background-position-y: 30px ; 

    }
  
}
.logo{ 
    opacity: 1;
    width:240px;
    /* background:red ;  */
}
header nav{ 
    position:fixed ; 
    left:0;
   


    width :100%;
    background-color:#ffffff00;
    height:fit-content;
    z-index: 1000;
    
}
nav .navbar{ 
      
        width:100%;
        display:flex ; 
        margin :20px auto;
        justify-content: space-between;
        align-items: center; 
        align-content: center;
        flex-wrap: wrap;
        height:100%;
        background-color: rgba(240, 248, 255, 0);
        backdrop-filter: blur(10px);
    
      
    }
    
.logo img { 
    width:100% ;
    object-fit:contain;

}
.navbar .menu { 
    display: flex ; 
    list-style-type: none; 
    
}
.navbar .menu li{ 
    margin : 0 10px ; 
}
.navbar .menu a:hover  { 
    color :#ff0000;
}
.navbar .menu li a { 
    transition:1s;
    text-decoration: none;
    font-size:17px ;
    color :#2c3e50;
font-weight:500; 

}

 .navbar  .searchbar { 

    /* background:red ; */
    height:45px ;
    position:relative ;
    width : 250px ;
}
input[type="text"] {
    position:absolute; 
    height:100%;
    width:100%;
    top:0;
    left:0;outline:none ; 
    color:#2c3050; 
    font-size: 18px ; 
    
   border:2px solid #2c3050;
   border-radius : 8px ;
   padding: 0 10px 0 40px ;
}


*::selection{
    background:red ;
    color : #fff; 

}
.searchbar a { 

    position:absolute ;
    top:50%;
    left:9px;
    transform:translatey(-50%);
    border-right: solid 2px #2c3050;
    padding-right: 4px ;
 color:#2c3050; 
    padding-right : 6px ;
}
.content{ 
    position:absolute;
    top:33%;
    left:7%;
    display: flex;
    flex-direction: column; 
    width:100%;
    height:100%;
    
}
.content .text{ 
    font-size:27px ; 
    color: #2c3050;
}
.content .name{ 
    font-size: 75px ; 
    color :#2c3050;
    margin:-20px 0 0 -3px ;
}
.content .jop{ 
    font-size: 40px;
    color:#2c3050;
    display:flex;
}
.content .typing-text{ 
    color:#1de2d1;
    margin-left:5px ;
    animation:typing 5s infinite steps(20); 
    /* background-color: red ; */
    white-space:nowrap ; 
    overflow:hidden ; 
    border-right:solid 4px #1de2d1;
}
.content #typing-text span{
    animation:typing_id  3s infinite ease-in-out ; 
}
.content #typing-text{ 
    color:#1de2d1;
    margin-left:5px ;
    animation:border_id  3s infinite ease-in-out ; 

    /* background-color: red ; */
    white-space:nowrap ; 
    overflow:hidden ; 
    border-right:solid 4px #1de2d1;
    
}
@keyframes typing_id{
    0%{
       color:#1de2d1 ;
    }
    50%{ 
        color :#c346c2;
    }
 
}
@keyframes border_id{
    0%{
        border-right:solid 4px #1de2d1;
    }
    50%{ 
        border-right:solid 4px #c346c2;
    }
 
}
.content .buttons { 
    margin:20px 0 0 50px;
    
}
.content .buttons  button{ 
    color: #fff;
    margin: 0 10px ;
    padding: 8px 16px ; 
    font-size: 18px ;
    cursor : pointer ; 
    border-radius: 6px;
    outline:none;
    border-color : #30212100 ;
    border:none ; 
    background-image : linear-gradient(135deg,  #2afadf 10% ,  #c346c2 100%);
    transition : all 0.3s ease ;
} 
.content .buttons  button:hover , .break .blur > div > div>  button:hover { 
    transform: scale(0.9);

    background-image : linear-gradient(135deg,    #c346c2 10% , #2afadf 100%);

} 
@keyframes typing{
    0%{
        width:0ch;
    }
    50%{ 
        width:21ch;
    }
    100%{
        width:0ch;
    }
}
header .girl img{ 
height:95%;
position :absolute;
right:4%;
bottom:-.05%;

mix-blend-mode: multiply;
z-index: 10;

}
#content_id{ 
    filter:blur(10px);
    transition: all 0.7s ease; 
    border-radius : 20px;
    animation: blur  both;
    animation-timeline: view(0% 0);
    filter:opacity(33px)
}

.break{ 
    height:200px ;
    
    background-image : url(christin-hume-hBuwVLcYTnA-unsplash.jpg);
    background-size:cover;
    background-repeat: no-repeat;
    background-position:center;
    background-attachment: fixed;
    animation:blur  both;
    animation-timeline: view(50% );
}
.blur{ 
    width:50%; 
    height:100% ;
    background-color:rgba(248, 248, 245, 0);
    margin : 0 auto ; 
    animation:blur  both;
    animation-timeline: view(70% 0);
}
.break .blur > div{ 
    height:100px ; 
    background :red ;
    
    
    margin: 0 auto ; 
    
}
.break .blur > div > div button  a:active{
    transition:all 2s ease; 
}
.break .blur > div > div button  a{ 
    color: rgb(255, 255, 255) ; 
    text-decoration: none ; 

    transition: all 0.5 ease ;
}

.break .blur > div { 
    position:relative ; 
    background-color:rgba(255, 217, 0, 0) ;
}

.break .blur > div > div>  button{ 
    padding: 10px 60px ;
    outline : none ; 
    border:none ; 
    border-radius : 10px ; 
    transition: 0.3s;
    position:absolute;
    background-image: linear-gradient(135deg, #2afadf 10%, #c346c2 100%);
    
    
}
.break .blur > div > div> img { 
    width:25px;
    z-index: 2;
    position:absolute;
    mix-blend-mode: multiply;
    top:0;
    right:10px;
    bottom:0;
    
}
.break .blur .more_button div{ 
    background-color:#c346c2; 
    
    
}
.break .blur .more_button{ 
    width:155px;
    
}
.break .blur .breaktitle p{ 
    text-align: center;
    font-size : 70px;
    background-image:linear-gradient(to right, #1fc0aa 20%, #c346c2 50%);
    
    -webkit-background-clip: text;
    background-clip: text;
    color :rgba(255, 0, 0, 0);
    background-color:#a72c2c;
    background-attachment: fixed;
    
}

@keyframes blur{ 
    0%{ 
        filter:blur(10px);
        
    }
    50%{ 
        filter:blur(0px);   
    }
    
}
@keyframes come{ 
    0%{ 
        scale:0.3
        
        
    }
    to{ 
       scale:1
    }
    
}


.girl_id{ 
    animation : come both ease ; 
    animation-timeline: view(50% 0);

 
}

.contact{
    width:100%; 
    height:100vh;
    background-color:red ;
}
.contact_container{ 
    background-color:black;
    position:absolute;
    width:100vw;
    height:100%;  
  margin: 0 auto 0 auto;
  overflow-x: hidden;

}
.contact_container .contacts a { 
    text-decoration:none ; 
    color: #fff;
    font-size:30px;
   
}
.contact_container .contacts { 
    display:flex ;
    list-style: none;
    background-color: rgba(255, 255, 0, 0) ;
    width:96vw;
    height:100%;    

    justify-content: space-around;
    align-items:center ; 

    

}
.contact_container .contacts li img{
    width:100px;
}
.contact_container .contacts li {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column wrap;
    /* transform: translateX(); make the animation in last time */
    /* transform: translateX();     */
    cursor: pointer;
 
}
.contact .contact_container .contacts li img{
 transition: 0.7s;
 
}
.contact .contact_container .contacts li img:hover{ 
    scale:1.5 ; 
    rotate: 360deg;

}
@keyframes contact_move {
    from{ 
        scale: 0.2; 

    }
    to{
        scale:1;
    }
    
}

.contact div {
    width:100%;
}


@media (width< 1231px) {
    .content .text{ 
        font-size: 2rem;
    }
    .content{ 
        width:91%;
    }
    .girl{ 
        display: none;
    }
    .searchbar{ 
        display: none;
    }
    .content div { 
        width:100%;
    }
    .breaktitle  p { 
        font-size: 10px;
    }
}

@media (width < 739px) {
    .content .text{ 
        font-size: 2rem;
    }
    .content .name{ 
        font-size: 2rem;
    }
    .content{ 
        gap:20px;
        align-items: center ;
        justify-content: flex-start;
        align-content: flex-start;
    }
    .girl{ 
        display: none;
    }
    .searchbar{ 
        display: none;
    }
    .jop span{ 
        font-size: 1.5rem;
    }
    .header1{ 
        width:100%;
        height:100vh;

    }
    .content .typing-text{ 
        animation: none;

    }
    .jop{ 
        display: flex ;
        flex-direction: column;
    }
    .navbar{
        flex-direction: column;

    }
    .contact  div{ 
        width: 100%;
        display: flex;
        flex-direction: column;
    }
    .contact div .contact_container ul{ 
        display: flex;
        flex-direction: column;
    }
    .menu li  a{ 
        font-size : 300px;
    }
    .break .blur .breaktitle p  { 
        font-size: 2rem;
    }
}
html{ 
    overflow-x: hidden;

}

