@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,500&display=swap');

:root {
    --warna-aksen:#6971df;
}

*,
*::before,
*::after{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}



body{
    margin: 0;
    padding: 0;
    width: 100%;
 
    display: flex;
    flex-direction: column;
 
    font-family: "Poppins", sans-serif;
    background-color: #fefefe;
}

header nav{
    width: 100%;
    padding-top: 1rem;
 
 
    display: flex;

    justify-content: space-around;
    align-items: center;
 
    z-index: 100;
 
    background-color: white;
}



header nav ul{
    display: flex;
    justify-content: center;
    gap: 1rem 2rem;
}

header nav ul .satu, .dua, .tiga, .empat{
    list-style: none;
}

header nav ul li a{
    text-decoration: none;
    font-size: 1rem;
    color: #20245e;

    transition: .3s ease-in-out;
}

a:hover{
    color: var(--warna-aksen);
}

.logo-header{
    width: 30px;
    border-radius: 13px;
}

.sidebar{
    display: none;
    flex-direction: column;
    position: fixed;

    height: 100vh;
    width: 40%;
    top: 0;
    right: 0;

    padding-left: 1rem;

    background-color: var(--warna-aksen);
    border-left: 2px solid #fefefe;
}

header nav ul .side-satu, .side-dua, .side-tiga, .side-empat{
    list-style: none;
}

.sidebar a{
    color: #fefefe;
}

.sidebar a:hover{
    color: #efefef;
}

.hamburger{
    display: none;
}

.close{
    list-style: none;
}

.intro{
    width: 100vh;
    /* height: 100vh; */

    display: flex;
    justify-content: center;

    margin: auto;
    padding: 10rem 0;
}

.content{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;

    gap: 2rem;
}

.text{
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;

    gap: 1rem;
}

.text h1{
    font-size: 2.6rem;
    line-height: 3rem;
}

.CTA-button{
    width: 230px;
    height: 40px;

    border: none;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: white;
    background-color: var(--warna-aksen);

    font-size: .8rem;

    transition: .3s;
}

.CTA-button:hover{
    color: var(--warna-aksen);
    background-color: white;
    border: var(--warna-aksen) 1px solid;
}

.hero{
    width: 50%;
}

.hero img{
    width: 400px;
    border-radius: 10px;
}

.twt{
    display: flex;
    justify-content: center;
}

.twitter{
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 1rem;
}

.twitter-timeline{
    width: 50%;
    height: 500px;
    overflow-x: hidden;
    text-align: center;
    padding: 20px;
} 

footer{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    width: 100%;
    position: relative;
    bottom: 0;
    padding: 20px;

    background-color: var(--warna-aksen);
    color: white;
}

footer h3{
    font-weight: 500;
}

footer .social-icons{
    display: flex;
    gap: 1rem;

    padding: 1rem 0;
}

footer .social-icons a i{
    font-size: 20px;
    color: white;
}

footer p{
    text-align: center;
}

.act{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;

    padding: 4rem 5rem;
}

.title{
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 2.3rem;
}

.title h1{
    font-weight: 600;
}

.title h2{
    font-weight: 500;
}

.yt{
    height: 720px;
}

.miro{
    width: 100%;
    height: 720px;
}

.spotify{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.spotify iframe{
    width: 33%;
}

@media screen and (max-width: 768px) {
    header nav ul .satu, .dua, .tiga, .empat{
        display: none;
    }

    .intro{
        width: 100%;
        justify-content: center;
        align-items: center;

        padding: 5rem 0rem;
    }
    .content{
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .hero{
        order: -1;
    }

    .hero img{
        width: 100%;
    }

    .twitter{
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .twitter-timeline{
      width:    100%;
    } 

    .act{
        width: 100%;
    }

    .title{
        text-align: center;
    }

    .yt{
        height: 235px;
    }

    .miro{
        height: 30vh;
    }

    .spotify{
        flex-direction: column;
        gap: 1rem;
    }

    .spotify iframe{
        width: 90%;
    }

    .act{
    
        padding: 4rem 1rem;
    }

    .CTA-button{
        width: 190px;
        height: 40px;
    }

    .hamburger{
        display: flex;
    }

    
}