*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    height: 100vh;
    background-color: #060606;
}

header{
    display: flex;
    justify-content: center;
    margin-top: 20px;
    height: 40px;
    gap: 18px;
    position: relative;
}

header input{
    height: 100%;
    background-image: url(./img/search-icon.svg);
    background-repeat: no-repeat;
    background-position: right;
    background-size: 32px, 32px;
    width: 50%;
    border-radius: 24px;
    padding: 18px;
}

header button{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    font-family: inter;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
}

main{
    display: flex;
    height: 100%;
    flex-grow: 1;
    padding-left: 10%;
    padding-right: 10%;
    padding-bottom: 20px;
    margin-top: 20px;
    gap: 24px;
}

main h2{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 34px;
    width: 76px;
    background-color: #61E54F;
    font-size: 12px;
    border-radius: 12px;
    font-family: inter;
    font-weight: 800;
}



.galeria{
    width: 100% ;
    height: 100% ;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    justify-content: space-between;
    margin-top: 80px;
}

.album{
    height: 60%;
    width: 60%;
    color: white;
}

.album p{
    font-family: inter;
    font-size: 24px;
}

.capa-album{
    height: 100%;
    background-color: tomato;
}

/*MOBILE*/
@media(max-width: 768px){
    header input{
        font-size: 8px;
        background-size: 24px, 24px;
        padding: 8px;
        height: 75%;
    }

    header button{
        padding: 8px;
        font-size: 0.5rem;
        height: 75%;
        width: 15%;
    }

    main{
        display: flex;
        flex-direction: column;
    }
    
    main h2{
        width: 20%;
        height: 24px;
        font-size: 8px;
    }

    .galeria{
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        width: 100%;
        margin-top: 0px;
        gap: 12px;
    }

    .album{
        display: flex;
        width: 100%;
        height: 48px;
    }

    .album p{
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        background-color: #0D0D0D;
        width: 100%;
    }

    .capa-album{
        width: 30%;
        background-color: tomato;
    }

}