html {
    background-color: rgb(20, 20, 20);

    color: white;
    font-weight: 500;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

a {
    text-decoration: none;
    color: white;
}

.attribution {
    background-color: rgb(20, 20, 20);

    font-size: 11px;
    text-align: center;
    position: absolute;

    bottom: 0; left: 50%;
    transform: translate(-50%);

    margin: 10px;
    padding: 10px;
    border-radius: 10px;
}
.attribution a {
    color: hsl(228, 45%, 44%);
}

.img-holder {
    padding: 10px;
}

img {
    transition: transform 0.1s ease-in-out;
    transform: scale(1);

    border-radius: 50%;
    border: 5px solid white;

    width: 150px;
    height: auto;

}

img:hover {
    transition: transform 0.1s ease-in-out;

    transform: scale(1.25);
}

header {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    border-radius: 25px;

    width: 500px;
    

    margin: auto;

    padding: 25px;

    background-color: rgb(40, 40, 40);
}

.name {
    font-size: xx-large;
    margin-top: 10px;
    margin-bottom: 0;
}

.location {
    color: chartreuse;
}

.about-me {
    color: rgb(175, 175, 175);
}

.socials {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}

.socials a {
    transition: background-color 0.1s ease-in-out;
    background-color: rgb(60, 60, 60);

    margin: 10px 25px;
    padding: 25px;

    border-radius: 15px;

    width: 400px;

    text-align: center;
    align-items: center;
}

.socials a:hover {
    transition: background-color 0.1s ease-in-out;

    background-color: rgb(60, 255, 60);
}