:root{
    --btn-color:#e58f00;
    --about-sec:#1d1d23;
}
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    outline: none;
    text-decoration: none;
    font-family:'Segoe UI', sans-serif;
    transition: 0.5s;
    text-transform: capitalize;
}
html{
    font-size: 65%;
    scroll-behavior: smooth;
    background-color: rgb(251, 248, 245);
}

.header{
    
    position: fixed;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: #1d1d23;
}
.home1{
   
    background: url(frontend/images/bilder2.jpg);
    min-height: 100vh;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.main-home{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    padding-top: 13rem;
    padding-left: 4rem;
    padding-right: 4rem;
}
.home-inner-content{
    flex: 1 1 45rem;
}
.home-image{
    width: 100%;
    height: 100%;
    position: relative;
    
}
.home-image img{
    width: 100%;
    position: absolute;
    transform: translate(0%, -50%);
    animation: mymove 5s infinite ease-in-out;
}
@keyframes mymove {
    0%   {top: 0px;}
    50%   {top: 15px;}
    75%   {top: 10px;}
    100%   {top: 0px;}
  }
.home-text-content{
    padding: 0 4rem;
}
.home-text-content h1{
    font-size: 5.6rem;
    color: #e58f00;
    font-weight: 280;
}
.home-text-content p{
    color: rgb(20, 166, 244);
    font-size: 2rem;
    margin-top: 10px;
    margin-bottom: 15px;
    line-height: 25px;
}
.home-text-content a{
   

    background: rgb(20, 166, 244);
    
    color: rgb(255, 255, 255);
    padding: 0.6rem 1.5rem;
    
    border-radius: 10px;
    font-size: 18px;
   transition: 0.5s;
   display: inline-block;
   
}
.home-text-content a:hover{
    color: white;
    background: var(--btn-color);
    transform: scale(1.1);
    
}



@media (max-width:767px) {
    .header{
        padding: 3rem;
    }
   
    /* home css desing */

    .home-text-content{
        padding: 0 2rem;
    }
    .main-home{
        padding: 2rem 0;
    }
    .home{
        padding-top: 10rem;
        
    }
    .home-image img{
        width: 100%;
    position: absolute;
        transform: translate(0%, -20%);
    }
    .home-text-content{
        margin-top: 24rem;
        margin-left:2rem;
    }
    .home-text-content h1{
        font-size: 3rem;
        color: #e58f00;
    }
}


