*{
    margin:0;
    padding:0;

}
body{
    min-height:100vh;
}
.navbar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    background-color:hsla(33, 86%, 51%, 50%);
    padding:10px;
    position:sticky;
    top:0px;
    z-index:1000;
}
.links{
    display:flex;
    font-family:sans-serif;
    gap:20px;
    margin-right:30px;
}
.links a{
    text-decoration:none;
    color:hsl(0, 0%, 100%);
}
#Intro{
    position:relative;
    background:url('ASSETS/interior-zoom.jpg');
    background-size:cover;
    background-position:center;
    background-repeat: no-repeat;
    padding:150px;
    height:100%;
    width:100%;
    box-sizing:border-box;
    display:flex;
    justify-content:left;
    align-items:left;

}
.Text{
    color:white;
    text-align:center;
    max-width:400px;
    font-family:cursive;
    padding:10px;

}
.Text h2{
    font-size:3em;
}
.Trend{
    border:2px solid grey;
    display:flex;
    gap:20px;
    align-items:center;
    height:200px;
    border:1px solid grey;
    border-radius:5px;
    font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif
}
.Trend img{
    width:100%;
    height:100%;
    object-fit:cover;
}
.main{
    padding:30px;
}
.main h2{
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin-bottom:10px;
}
.buttons{
    display:flex;
    justify-content:left;
    gap:50px;
    margin-top:30px;
}
.buttons button{
    padding:10px;
    border:none;

}
.buttons button:active{
        background-color:hsl(208, 100%, 97%);
}
.like{
    border-radius:50px;
}
.Tech-trends{
    padding:20px;
    display:flex;
    gap:10px;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
}
.main2 h2{
    padding:10px;
    text-align:center;
    font-family:helvetica;
}
.Tech-card{
    border:1px solid hsl(0, 7%, 68%);
    width:400px;
    height:500px;
    flex:0 0 auto;
    border-radius:5px;
    scroll-snap-align:start;
  
}
.Tech-card img{
    width:100%;
    height:50%;
}
.Card-text{
    padding:10px;
    font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif
}
.Buttons{
    display:flex;
    justify-content:left;
    padding:10px;
    gap:30px;
}
.Buttons button{
    padding:10px;
    border:none;
}
.Buttons button:active{
    background-color:hsl(208, 100%, 97%);
}
.like2{
    border-radius:50px;
}
.Tech-trends::-webkit-scrollbar{
    display:none;
}
.arrows{
    display:flex;
    justify-content:space-between;

}
.arrows button{
    padding:3px 20px;
    margin:10px;
    border:none;
}
.arrows button:hover{
    background-color:hsla(180, 100%, 50%, 0.375);
}
.arrows button:active{
    background-color:hsla(0, 0%, 100%, 0.9);
}
footer{
    background:hsl(0, 0%, 70%);
    padding:100px;
    border-radius:50px 50px  0px 0px;
    
    
}
.about{
    display:flex;
    flex-direction:column;
    padding:20px;
justify-content:center;
font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif
}
.support{
    min-height:100vh;
    display:flex;
    flex-direction:column;
    justify-content:center;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    align-items:center;
    box-sizing:border-box;
}
ul{
    text-align:center;
    list-style:none;
}
.copyright{
    color:white;
    font-size:medium;
    text-align:center;
    font-family:helvetica;
}
.icons{
    display:flex;
    gap:10px;
    padding:20px;
}
@media(max-width:768px){
    .navbar{
        display:flex;
        justify-content:center;
        flex-direction:column;
        gap:20px;

    }
    .navbar span{
        color:white;
    }
    .navbar h1{
        font-family:cursive;
    }
    body{
        background:none;
        font-size:small;
    }
    .Text{
        display:flex;
        justify-content:left;
        flex-direction:column;
        align-items:left;
    }
    .main{
        padding:10px;
        display:flex;
        justify-content:center;
        flex-direction:column;
        align-items:center;
    }
    .Trend{
        width:300px;
        height:100%;
        display:flex;
        flex-direction:column;
        justify-content:space-between;
    }
    .Trend img{
        width:100%;
        object-fit:cover;
    }
    .Trend-text{
        padding:10px;
    }
    .buttons button{
        padding:10px 5px;
        font-size:10px;
    }
    .Tech-card{
        height:100%;
        width:200px;
    }
    .Tech-card img{
        height:200px;

    }
    .support p{
        width:300px;
        text-align:center;
    }
    footer{
        border-radius:0px;
        background-color:hsla(0, 0%, 50%, 0.638);
        padding:30px;
    }
}