@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@700&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
html{
    scroll-behavior: smooth;
}
body{
    height: 100vh;
    background: #171717;
    color: #fff;    
}
.navbar{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
    padding: 0 50px;
}
.navbar h2{
    color: #ffb742;
    font-weight: 600;
}
.navbar ul{
    display: flex;
}
.navbar ul li{
    list-style: none;
}
.navbar ul li a{
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    margin-right: 25px;
    transition: color 0.3s ease;
}
.navbar ul li:hover a{
    color: #ffb742;
}

.slider{
    width: 1280px;
    /* max-width: 100vw; */
    height: 720px;
    margin: auto;
    position: relative;
    overflow: hidden;
}
.slider .list{
    position: absolute;
    width: max-content;
    height: 100%;
    left: 0;
    top: 0;
    display: flex;
    transition: 1s;
}
.slider .list img{
    width: 1280px;
    /* max-width: 100vw; */
    height: 100%;
    /* object-fit: cover; */
}
.slider .buttons{
    position: absolute;
    top: 45%;
    left: 5%;
    width: 90%;
    display: flex;
    justify-content: space-between;
}
.slider .buttons button{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #ccc;
    color: #000;
    border: none;
    font-family: monospace;
    font-weight: bold;
}
.slider .dots{
    position: absolute;
    bottom: 10px;
    left: 0;
    color: #ccc;
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}
.slider .dots li{
    list-style: none;
    width: 10px;
    height: 10px;
    background-color: #ccc;
    margin: 10px;
    border-radius: 20px;
    transition: 0.5s;
}
.slider .dots li.active{
    width: 30px;
}
.copyright{
    width: 100%;
    text-align: center;
    padding: 30px;
    font-weight: 400;
    margin-top: 10%;
    color: #fff;
    line-height: 200%;
    background-color: #ffb742;
    font-size: 1.3rem;
}
@media screen and (max-width: 768px){
    .slider{
        height: 400px;
    }
}