* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* asterix for stuff from youtube playlist saved */

}

body {
    font-family: Arial, sans-serif;
    background-color: #f8f8f8;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200vh;
    height: 200vh;
    padding: 20px;
    text-align: center;
}

header {
    margin-bottom: 50px;
    padding-left: 50px;
    padding-right: 20px;
}

h1 {
    font-size: 2rem;
    color: #4e4c4c;
    margin: 20px;
}

h2 {
    font-size: 2rem;
    color: #4e4c4c;
    margin: 20px;
}

/* container styling */
.linktree-container {
    background-image: url(../media/radial-leaves.png);
    background-color: #f4bebe;
    width: 300px;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 6px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* profile */
.profile-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 10px;
    margin-top: 0px;
}



p {
    color: rgb(174, 72, 21);
    font-size: 17px;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

/* affects the icon sizes? */
.social-links a img {
    width: 25px;
    height: 25px;
}

.links a {
    display: block;
    background-color: #eb75ac;
    color: black;
    padding: 10px;
    margin: 10px 0;
    text-decoration: none;
    border-radius: 10px;
    transition: background-color 0.5s ease-in-out;
}

.links a:hover {
    background-color: #d8d528;
}

.inspire-links {
    background-color: #bee4ef;
    border-radius: 10px;
    /* color: rgb(179, 27, 27); */
    font-weight: bold;
}

footer {
    margin-top: 20px;
    color: rgb(190, 47, 47);
    font-size: 12px;
}

.inspire-links li {
    margin-bottom: 10px;
    list-style-type: none;
    /* above gets rid of the dots */
}

/* flexbox. Reserve for future practice */
.linktree-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* not sure how I'm able to use it. Messes up the layout of the social media stuff */
/* .profile, .social-links {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 10px;
} */

.links a:visited {
    color: #126a63;
}

.links a:active {
    background-color: #ca2fdb;
}

.inspire-links li:nth-child(odd) {
    background-color: #edb76c;
}

.inspire-links li:nth-child(even) {
    background-color: #bc82f2;
}

.inspire-links li:hover {
    background-color: #f9ad8e;
}


.links a:first-child {
    background-color: #f9ad8e;
}

.links a:last-child {
    background-color: #f1e6b1;
}