@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    font-family: Montserrat;
    box-sizing: border-box;
}

body {
    background-color: white;
}

header{
    width: 100%;
    height: 80px;
    background: #313131;
    display: flex;
    align-items: center;
    font-weight: 500;
    justify-content: space-between;
    padding: 0 100px;
}

.logo img{
    height: 50px;
    width: auto;
}

.hamburger {
    display: none;
}

.nav-bar ul {
    display: flex;
}

.nav-bar ul li a {
    display: block;
    color: white;
    font-size: 20px;
    padding: 10px 25px;
    border-radius: 50px;
    transition: 0.2s;
    margin: 0 5px;
}

.nav-bar ul li a:hover {
    color: #313131;
    background: white;
}

.homecontent{
    display: flex;
    justify-content: center;
    align-items: center;
}

.mockup img {
    display: flex;
    margin-top: 20px;
    margin-right: 100px;
    width: 600px;
}

.main {
    margin-left: 170px;
}

.main h1{
    font-size: 100px;
    font-weight: 800;
    color: #313131;
}

.main h3 {
    color: #313131;
    font-size: 16px;
    font-weight: 600;
    margin-left: 5px;
}

.download {
    margin-top: 15px;
    display: flex;
    align-items: center;  
}

.button3 {
    font-family: 'Montserrat', sans-serif;
    border: none;
    background: #313131;
    padding: 17px 50px;
    border-radius: 400px;
    color: white;
    font-weight: 800;
    font-size: 14px;
    transition: .4s;
    cursor: pointer;
}

.button3:hover {
    transform: scale(1.1);
}

.tim {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 115px 0px;
    gap: 60px;
}

.ceo img, .cco img, .cto img {
    padding: 10px;
    border-radius: 50px;
}

.ceo h1, .cco h1, .cto h1 {
    font-size: 25px;
    text-align: center;
}

.ceo h3, .cco h3, .cto h3 {
    font-size: 14px;
    font-style: italic;
    font-weight: 400;
    text-align: center;
}

.title {
    flex-direction: column;
    display: flex;
    margin: 175px 0px 40px 0px;
    justify-content: center;
    align-items: center;
}

.title h1 {
    font-size: 100px;
    font-weight: 800;
    color: #313131;
}

.title h3 {
    font-size: 16px;
    font-weight: 500;
    color: #313131;
}

.sosial {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 10px 0px;
}

.sosial h3 {
    font-weight: 600;
}

.instagram, .youtube, .website {
    background-color: white;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    color: #313131;
    padding: 10px;
    border: 3px solid #313131;
    border-radius: 70px;
    transition: .4s;
    cursor: pointer;
}

.instagram:hover, .youtube:hover, .website:hover {
    transform: scale(1.1);
}

.fitur{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 180px 0px;
    gap: 60px;
}

.alarm img, .riwayat img, .pencarian img {
    margin-bottom: 20px;
}

.alarm, .pencarian {
    border: 3px solid #313131;
    border-radius: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 355px;
    height: 280px;
}

.riwayat {
    background-color: #313131;
    border-radius: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 355px;
    height: 280px;
}

.alarm h1, .pencarian h1{
    color: #313131;
    font-weight: 800;
    text-align: center;
}

.riwayat h1 {
    color: white;
    font-weight: 800;
    text-align: center;
}

.alarm h3, .pencarian h3{
    color: #313131;
    font-weight: 500;
    text-align: center;
}

.riwayat h3 {
    color: white;
    font-weight: 500;
    text-align: center;
}

@media only screen and (max-width: 1320px) {
    header {
        padding: 0 50px;
    }

    .fitur{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin: 50px 0px;
        gap: 60px;
    }

}

@media only screen and (max-width: 1100px) {
    header {
        padding: 0 30px;
    }
  
    .homecontent {
        flex-direction: column;
        justify-content: center;
    }

    .tim {
        margin: 50px 0px;
        gap: 40px;
        flex-direction: column;
        justify-content: center;
    }

    .ceo img, .cco img, .cto img {
        width: 300px;
        padding: 10px;
    }

    .fitur{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin: 50px 0px;
        gap: 60px;
    }
    
}

@media only screen and (max-width: 768px) {
    .hamburger {
        display: block;
        cursor: pointer;
    }

    .hamburger .line {
        width: 30px;
        height: 3px;
        background: white;
        margin: 6px 0;
    }

    .nav-bar {
        height: 0;
        position: absolute;
        top: 55px;
        left: 0;
        right: 0;
        width: 100vw;
        background: #313131;
        transition: 0.5s;
        overflow: hidden;
    }
    
    .nav-bar.active {
        height: 300px;
    }

    .nav-bar ul {
        display: block;
        width: fit-content;
        margin: 40px auto 0 auto;
        text-align: center;
        transition: 0.5s;
    }

    .nav-bar.active ul {
        opacity: 1;
    }

    .nav-bar ul li a {
        margin-bottom: 12px;
    }

    .homecontent {
        flex-direction: column;
        justify-content: center;
    }

    .mockup img {
        margin-top: 30px;
        width: 100%;
    }

    .main {
        margin: 0px 170px;
    }

    .main h1 {
        margin-top: 30px;
        text-align: center;
    }

    .main h3 {
        text-align: center;
    }

    .button3 {
        margin-left: 30px;
        padding: 17px 50px 17px 50px;
    }
    
    .tim {
        margin: 50px 0px;
        gap: 40px;
        flex-direction: column;
        justify-content: center;
    }

    .ceo img, .cco img, .cto img {
        width: 300px;
        padding: 10px;
    }

    .title{
        margin: 50px 20px;
    }

    .title h1 {
        font-size: 60px;
        text-align: center;
    }

    .title h3 {
        text-align: center;
    }

    .sosial {
        flex-direction: column;

    }

    .fitur{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin: 50px 0px;
        gap: 60px;
    }
}