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

html,
body {
    height: 100%;
    width: 100%;
}

body {
    background-color: #f2f3e2;
}

nav {
    padding: 20px;
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

nav .logo {
    width: 25%;
    display: flex;
    align-items: center;
}

.logo img {
    height: 18px;
    width: 18px;
}

nav h2 {
    font-size: 20px;
    font-family: sans-serif;
    font-weight: 600;
}

.icon {
    width: 25%;
    text-align: right;
}


.tabs {
    width: 50%;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.tabs button {
    padding: 8px 12px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    background-color: #12243f;
    color: #fff;
}

.tabs button:hover {
    scale: 1.02;
}

.tabs button.active {
    color: #b1bad2;
}

.tabs-container {
    width: 100%;
    height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.tabs-content {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}


.aImage {
    height: 550px;
    width: 400px;
    position: absolute;
    top: 0px;
    left: 180px;
    z-index: -1;
}

.tab-content h2 {
    font-size: 150px;
    font-family: sans-serif;
    font-weight: 900;
    color: transparent;
    text-align: center;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: rgb(0, 0, 0);
}


.music-album-cards .card {
    height: 250px;
    width: 180px;
    position: absolute;
    z-index: -1;
    border-radius: 12px;
    display: flex;
    align-items: end;
    justify-content: center;
    background-color: #858e96;
}

.card:nth-child(1) {
    top: 50px;
    right: 60px;

}

.card:nth-child(2) {
    bottom: -10px;
    right: 360px;
    transform: rotate(10deg);
    background-color: #0F172A;
}

.card:nth-child(3) {
    bottom: 70px;
    left: 2px;
    transform: rotate(-5deg);
    background-color: #F62F63;
}

.music-album-cards .card img {
    height: 50%;
    width: 100%;
    object-fit: cover;
}

.card:nth-child(1) img {
    height: 70%;
    width: 100%;
    object-fit: contain;
}

.card:nth-child(2) img {
    height: 70%;
    width: 100%;
    object-fit: contain;
}

.card .title {
    position: absolute;
    top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card .title h2 {
    font-size: 28px;
    color: #000;
    text-shadow: 2px 2px 0 #ffffff, 4px 4px 0 #fffdfd;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #858594;
}

.card:nth-child(2) h2 {
    text-shadow: 2px 2px 0 #ffffff, 4px 4px 0 #fffdfd;
    -webkit-text-stroke-color: #070616;
}

.card:nth-child(3) h2 {
    text-shadow: 2px 2px 0 #ffffff, 4px 4px 0 #fffdfd;
    -webkit-text-stroke-color: #F999CB;
}

.tab-content {
    display: none;
}


.active {
    display: block;
}

.tab-content .title {
    margin-bottom: 50px;
}


.title h1 {
    font-size: 45px;
    font-family: sans-serif;
    font-weight: 600;
    text-align: center;
}


.bImage {
    height: 550px;
    width: 400px;
    position: absolute;
    top: 0px;
    left: 40px;
    z-index: -1;
}

.paragraph {
    display: flex;
    align-items: center;
    justify-content: center;
}

.paragraph p {
    font-size: 20px;
    font-family: sans-serif;
    width: 50%;
    text-align: center;
}