بسطر واحد من لغة CSS يمكننا عمل Smooth scrolling
دون الحاجة الى المكتبات
الكود الخاص Responsive
@media screen and (max-width: 1000px) {
.info{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
}
ul li{
position: relative;
width: 100px;
height: 35px;
line-height: 35px;
margin: 10px 10px;
display: flex;
justify-content: center;
align-content: center;
}
h1{
font-size: 25px;
}
p{
font-size: 15px;
}
}