@import url('https://fonts.googleapis.com/css2?family=MonteCarlo&family=Poppins:wght@400;500;600;700&family=Ubuntu:wght@400;500;700&display=swap');


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;

}
.body {
    background-color: silver;
}
.max-width{
    max-width: 1300px;
    padding: 0 80px;
    margin: auto;
}
.navbar{
    position: fixed;
    width: 100%;
    padding: 15px 0;
    font-family: 'Ubuntu',sans-serif;
    transition:  all 0.3s ease;
}
.navbar .sticky {
    padding: 30px 0;
    background-color: silver;
}

.navbar .max-width{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar .logo a{
    color: #ffffff;
    font-size: 35px;
    font-weight: 600;
}

.navbar .logo a span{
    color: #ff8906;
}

.navbar .menu li {
    list-style: none;
    display: inline-block;
    margin-right: auto;
    
}
.navbar .menu li a{
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    margin-left: 25px;
    transition: color 0.3 ease;
}
.navbar .menu li a:hover{
    color:#ff8906;
}
.home{
    display: flex;
    background: #262626;

    height: 100vh;
    color: #ffffff;
    min-height: 500px;
    font-family: 'Ubuntu',sans-serif;
}
.home .max-width {
    margin: auto 0 auto 40px;
}
.home .text-1{
    color: #fffffe;
    font-size: 27px;
}
.home .text-2{
    color: #fffffe;
    font-size: 75px;
    font-weight: 600;
    margin-left: -3px;

}
.home .text-2 span{
    color: #ff8906;
}
.home .text-3{
    color: #fffffe;
    font-size: 40px;
    margin: 5px 0;
}
.home .text-3 .span {
    color: gold;
    font-weight: 500;
}