* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Italianno", cursive;
            font-size:larger;
        }
        body {
            background: linear-gradient(135deg, #8b7c74 135%, #4b0202 100%, #690808 100%);
            color: #000000;
            overflow-x: hidden;
            min-height: 100vh;
            background-attachment: fixed;
        }
        header {
            padding: 2rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            z-index: 10;
        }
        .logo {
            font-size: 2.5rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            gap: 20px;
        }
        .logo span {
            color: #292523;
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav ul li {
            margin-left: 2rem;
        }
        nav ul li a {
            color: #000000;
            text-decoration: none;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            position: relative;
            padding: 0.5rem 0;
        }
        nav ul li a:hover {
            color: #b99898;
        }
        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #b99898;
            transition: width 0.3s ease;
        }
        nav ul li a:hover::after {
            width: 100%;
        }
        .hero {
            height: 80vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 0 5%;
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: 'lana';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('imagens/lana\ del\ rey.jpg') no-repeat center center/cover;
            opacity: 0.5;
            z-index: -1;
        }
        .hero h1 {
            font-size: 5rem;
            margin-bottom: 1rem;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
            letter-spacing: 3px;
        }
        .hero p {
            font-size: 2.5rem;
            max-width: 700px;
            margin-bottom: 2rem;
            line-height: 1.6;
        }
        .btn {
            display: inline-block;
            padding: 1rem 2.5rem;
            background: transparent;
            border: 2px solid #8B7C74;
            color: #000000;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            margin: 0.5rem;
        }
        .btn:hover {
            background: #8B7C74;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(240, 239, 239, 0.4);
        }
        .albums-section {
            padding: 5rem 5%;
        }
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            position: relative;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: #000000;
        }
        .albums-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 2rem;
        }
        .album-card {
            background: rgba(170, 128, 128, 0.05);
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        .album-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(255, 198, 198, 0.3);
        }
        .album-img {
            width: 100%;
            height: 280px;
            object-fit: cover;
            display: block;
        }
        .album-info {
            padding: 1.5rem;
        }
        .album-info h3 {
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
        }
        .album-info p {
            color: #000000;
            margin-bottom: 1rem;
            font-size: 1.9rem;
        }
        .album-year {
            color: #000000;
            font-weight: bold;
            font-size: 1.1rem;
        }

        .box0 {
            background-color: #D8BD92;
            border-radius: 15%;
            text-decoration:underline;
            text-decoration-color: #A47620;
            color: #000000;
            width: 100%;
            height: 100%;
            align-items: end;
            display: block;
        }
                .box1 {
            background-color: #75858A;
            border-radius: 15%;
            text-decoration: underline;
            text-decoration-color: #2E2B12;
            color: #D0B875;
            width: 100%;
            height: 100%;
            align-items: end;
            display: block;
        }
                .box2 {
            background-color: #97969B;
            border-radius: 15%;
            text-decoration: underline;
            text-decoration-color: #000000;
            color: #ffffff;
            width: 100%;
            height: 100%;
            align-items: end;
            display: block;
        }
                .box3 {
            background-color: #CCD5E2;
            border-radius: 15%;
            text-decoration: underline;
            text-decoration-color: #212E5D;
            color:#932017 ;
            width: 100%;
            height: 100%;
            align-items: end;
            display: block;
        }
                .box4 {
            background-color: #3A5E6C;
            border-radius: 15%;
            text-decoration:underline;
            text-decoration-color: #F3F1DF;
            color: #932017;
            width: 100%;
            height: 100%;
            align-items: end;
            display: block;
        }
                .box5 {
            background-color: #DDE599;
            border-radius: 15%;
            text-decoration:underline;
            text-decoration-color: #DC2126;
            color: #263569;
            width: 100%;
            height: 100%;
            align-items: end;
            display: block;
        }
                .box6 {
            background-color: #989898;
            border-radius: 15%;
            text-decoration:underline;
            text-decoration-color: #524f4f;
            color: #ffffff;
            width: 100%;
            height: 100%;
            align-items: end;
            display: block;
        }
                .box7 {
            background-color: #634239;
            border-radius: 15%;
            text-decoration:underline;
            text-decoration-color: #B5AD8A;
            width: 100%;
            height: 100%;
            align-items: end;
            display: block;
        }
                .box8 {
            background-color: #4D535F;
            border-radius: 15%;
            text-decoration:underline;
            text-decoration-color: #ffffff;
            color: #E7DB91;
            width: 100%;
            height: 100%;
            align-items: end;
            display: block;
        }
                .box9 {
            background-color: #DDDFD0;
            border-radius: 15%;
            text-decoration:underline;
            text-decoration-color: #CA614E;
            color: #7B7562;
            width: 100%;
            height: ;
            align-items: end;
            display: block;
        }
        .about-section {
            padding: 5rem 5%;
            display: flex;
            align-items: center;
            gap: 3rem;
        }
        .about-content {
            flex: 1;
        }
        .about-content h2 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
        }
        .about-content p {
            font-size: 2.8rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }
        .about-image {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 15px 30px #80746e;
        }
        .about-image img {
            width: 100%;
            display: block;
            overflow: hidden;
            opacity: 0.5;
        }
        footer {
            background: rgba(0, 0, 0, 0.7);
            padding: 3rem 5%;
            text-align: center;
        }
        .social-icons {
            margin-bottom: 2rem;
        }
        .social-icons a {
            display: inline-flex;
            justify-content: center;
            align-items: center;
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            margin: 0 0.5rem;
            color: #8B7C74;
            font-size: 1.5rem;
            transition: all 0.3s ease;
        }
        .social-icons a:hover {
            background: #C4BCB8;
            transform: translateY(-5px);
        }
        .copyright {
            color: #C4BCB8;
            font-size: 1rem;
        }
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 3.5rem;
            }
            .about-section {
                flex-direction: column;
            }
        }
        @media (max-width: 768px) {
            header {
                flex-direction: column;
                padding: 1rem;
            }
            nav ul {
                margin-top: 1rem;
            }
            nav ul li {
                margin: 0 0.5rem;
            }
            .hero {
                height: 70vh;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .hero p {
                font-size: 2.2rem;
            }
        }