@import url('https://fonts.googleapis.com/css2?family=Prompt:ital,wght@0,600;1,200&display=swap');

html {
    height: 100%;
    color: #000000;
    font-family: 'Prompt';
}

body {
    text-align: center;
    background-image: url(/assets/img/background.jpg);
    height: 100%;
    margin: 0;
    background-repeat: no-repeat;
    background-attachment:fixed;
    background-size: cover;
}

@media screen and (max-width: 500px) {
    body {
        background-image: url(/assets/img/magpie.png);
    }
}

h1 {
    font-size: 46px;
}

p {
    font-size: 30px;
    margin-bottom: 30px;
}

.whitebg {
    -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: white;
}

.artists-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.artist-box {
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 25px;
    width: 350px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.artist-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #1a1346;
    margin-bottom: 15px;
}

.name-container {
    margin-bottom: 10px;
}

.artist-box h2 {
    font-size: 28px;
    margin: 0;
    display: inline-block;
    vertical-align: middle;
}

.icon {
    width: 24px;
    height: 24px;
    vertical-align: middle;
    margin-left: 8px;
}

.artist-description {
    font-size: 18px;
    margin: 15px 0 20px;
    line-height: 1.4;
}

.artist-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.artist-links img {
    width: 32px;
    height: 32px;
    transition: transform 0.2s;
}

.artist-links a:hover img {
    transform: scale(1.1);
}

#footerp {
    font-size: 20px;
    color: white;
    margin-top: 1px;
    margin-bottom: 5px;
    -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgb(0, 0, 0);
}