body {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.85)), url("damian1.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: scroll;

    color: white;
    text-align: center;
    font-family: Arial, sans-serif;

    overflow-x: hidden;
}

.main-title{
        color: white;
        font-size: 48px;
        font-weight: bold;
        letter-spacing: 4px;
        margin-bottom: 10px;
    }

.intro p {
        font-size: 18px;
        line-height: 1.5;
        margin: 10px 0;
    }

.intro p:first-of-type {
    font-size: 20px;
    font-weight: bold;
}

.intro p:last-of-type {
    color: #e5e5e5;
}

.profile-photo {
    width: 80%;
    max-width: 200px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 35%;
    margin: 20px 0;
    border: 3px solid white;
}
.social-link {
    color: black;
    padding: 5px 20px;
    border: 2px solid #8b0000;
    border-radius: 30px;
    width: 90%;
    max-width: 300px;
    height: 64.5px;
    box-sizing: border-box;
    background-color: white;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0px;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 0 10px black;

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

}

@media (hover: hover) and (pointer: fine) {

    .social-link:hover {
        background-color: #8b0000;
        color: white;
        box-shadow: 0 0 20px #8b0000;
    }

    .youtube-link:hover .youtube-black {
        display: none;
    }

    .youtube-link:hover .youtube-white {
        display: block;
    }

    .tiktok-link:hover .tiktok-black {
        display: none;
    }

    .tiktok-link:hover .tiktok-white {
        display: block;
    }

    .spotify-link:hover .spotify-black {
        display: none;
    }

    .spotify-link:hover .spotify-white {
        display: block;
    }

    .spotify-link:hover .spotify-coming-soon {
        display: none;
    }

}
.social-link-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;

}

.support {
    display: flex;
    flex-direction: column;
    align-items: center;
}


section {
    margin-bottom: 80px;
}

.social-links h2,
.support h2,
.busking-vlogs h2,
.contact h2 {
    display: inline-block;
    border-bottom: 2px solid #8b0000;
    padding: 0 10px 2px;
    margin: 0 auto 20px;
}

.intro {
    padding-top: 10px;
}

.social-link img {
    width: 150px;
    height: auto;
    display: block;
}

.youtube-link {
    position: relative;
}

.youtube-link .youtube-white {
    display: none;
}

.youtube-link.clicked .youtube-black {
    display: none;
}

.youtube-link.clicked .youtube-white {
    display: block;
}

.youtube-link.clicked {
    background-color: #8b0000;
    color: white;
    box-shadow: 0 0 20px #8b0000;
}

.instagram-link {
    gap: 5px;
}

.instagram-link img {
    width: 35px;
    height: auto;
}

.instagram-link.clicked {
    background-color: #8b0000;
    color: white;
    box-shadow: 0 0 20px #8b0000;
}

.tiktok-link {
    position: relative;
}

.tiktok-link .tiktok-white {
    display: none;
}

.tiktok-link.clicked .tiktok-black {
    display: none;
}

.tiktok-link.clicked .tiktok-white {
    display: block;
}

.tiktok-link.clicked {
    background-color: #8b0000;
    color: white;
    box-shadow: 0 0 20px #8b0000;
}

.spotify-link {
    position: relative;
}

.spotify-link .spotify-white {
    display: none;
}

.spotify-link .spotify-coming-soon {
    display: none;
}

.spotify-link:hover .spotify-coming-soon {
    display: none;
}

.spotify-link.clicked .spotify-black {
    display: none;
}

.spotify-link.clicked .spotify-white {
    display: none;
}

.spotify-link.clicked .spotify-coming-soon {
    display: block;
    color: white;
}

.spotify-link.clicked {
    background-color: #8b0000;
    color: white;
    box-shadow: 0 0 20px #8b0000;
}

.coffee-link {
    gap: 10px;
}

.coffee-link img {
    width: 30px;
    height: auto;
}

.coffee-link.clicked {
    background-color: #8b0000;
    color: white;
    box-shadow: 0 0 20px #8b0000;
}

@media (max-width: 400px) {

    body {
        background-position: 35% center;
    }

    .main-title {
        font-size: 40px;
    }

    .intro p:first-of-type {
        font-size: 18px;
    }

    .intro p:last-of-type {
        font-size: 16px;
    }

    .profile-photo {
        max-width: 170px;
    }

    .social-link {
        font-size: 18px;
    }

    .social-links h2,
    .support h2,
    .busking-vlogs h2 
    .contact h2  {
        font-size: 20px;
    }

    .social-links h2,
    .support h2,
    .busking-vlogs h2,
    .contact h2 {
        font-size: 20px;
    }

    .social-link .youtube-logo,
    .social-link .tiktok-logo,
    .social-link .spotify-logo {
        width: 125px;
    }


    
}

.contact {
    display: flex;
    flex-direction: column;
    align-items: center;
}


.email-link {
    gap: 7px;
}

.email-icon {
    font-size: 25px;
}