* {
    box-sizing: border-box;
    --white: #fffdf8;
    --light-gray: #ccc5b9;
    --dark-gray: #403d39;
    --black: #252422;
    --accent: #f79465;
}

body {
    margin: 0;
    padding: 48px 0;
    background-image: url("images/background.jpg");
    background-position: center;
    background-size: cover;
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.container {
    width: 90%;
    max-width: 600px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 42px;
}

h1,
h2 {
    margin: auto;
    color: var(--white);
}

a {
    text-decoration: none;
    color: var(--white);
}

i,
span {
    color: var(--white);
}

/* --CONTENT-- */
.headshot-img {
    width: 40%;
    display: block;
    margin: 0 auto 16px;
    border-radius: 50%;
}

h1 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 12px;
}

.location {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

h2 {
    width: 80%;
    font-size: 1.2rem;
    font-weight: 400;
    margin-top: 16px;
}

.email:hover {
    color: #00deff;
}

/* --BUTTONS-- */
.button-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.button {
    text-decoration: none;
    display: block;
    width: 100%;
    color: var(--white);
    padding: 0.5em;
    font-size: 1.5rem;
    border: 1px solid var(--accent);
    border-radius: 8px;
    box-shadow: 0 0 6px black;
    background-color: #212e3696;
}

.button:hover,
.button:focus,
.button:active {
    font-size: 1.65rem;
    font-weight: 600;
}

.kofi-link:hover,
.kofi-link:focus,
.kofi-link:active {
    background-color: #13C3FF;
}

.twitch-link:hover,
.twitch-link:focus,
.twitch-link:active {
    background: linear-gradient(45deg, #772CE8, #9146FF); 
}

.mixcloud-link:hover,
.mixcloud-link:focus,
.mixcloud-link:active {
    background-color: #5000FF;
}

.soundcloud-link:hover,
.soundcloud-link:focus,
.soundcloud-link:active {
    background-color: #000000;
}

/* .youtube-link:hover,
.youtube-link:focus,
.youtube-link:active {
    background-color: #FF0000;
} */

.spotify-link:hover,
.spotify-link:focus,
.spotify-link:active {
    background-color: #1ED760;
}

.instagram-link:hover,
.instagram-link:focus,
.instagram-link:active {
    background: linear-gradient(
        to right,#833ab4,#fd1d1d,#fcb045
    );
}

.threads-link:hover,
.threads-link:focus,
.threads-link:active {
    background-color: black;
}

.facebook-link:hover,
.facebook-link:focus,
.facebook-link:active {
    background-color: #0866ff;
}

