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

body {
    font-family: 'Anton', sans-serif;
    background-color: #000;
    color: #fff;

    display: flex;
    justify-content: center;
    align-items: center;

    min-height: 100vh;
    text-align: center;
}

/* Main container */
.container {
    width: 100%;
    max-width: 500px;
    padding: 20px;

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

/* LOGO */
.logo img {
    width: clamp(120px, 40vw, 280px);
    height: auto;
}

/* ALBUM COVER */
.image-container {
    margin-top: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.square-image {
    width: clamp(180px, 60vw, 320px);
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 10px;
}

/* SOCIAL ICONS */
.social-links {
    margin-top: 30px;

    display: flex;
    justify-content: center;
    gap: clamp(15px, 5vw, 30px);
    flex-wrap: wrap;
}

.social-icon img {
    width: clamp(30px, 8vw, 50px);
    height: auto;
    transition: transform 0.3s ease;
}

/* Hover (desktop only feel) */
.social-icon:hover img {
    transform: scale(1.15);
}

/* MOBILE TWEAKS */
@media (max-height: 600px) {
    .container {
        justify-content: flex-start;
    }

    .image-container {
        margin-top: 10px;
    }

    .social-links {
        margin-top: 20px;
    }
}
