:root {
    --brown: #330101;
    --white: #fffbf1;
    --background: #f8dfdc;
    --font: "Poppins";

    font-family: var(--font);
    font-size: 60%;
    color: var(--brown);
}

body {
    background: var(--background);

    font-size: 2rem;

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

    padding: 60px 20px;
}

img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
	border: 2px solid var(--brown);
}

#links {
    display: flex;
    flex-direction: column;
    align-items: center;

    width: 100%;
    margin: 30px 0;
}

svg {
    position: absolute;
    top: 18px;
    right: 24px;

    width: 20px;
    height: 20px;
    border-radius: 0;
    z-index: 3;
}

.social-icons {
    top: 12px;
    left: 15px;

    width: 33px;
    height: 33px;
}

.a:hover svg {
    top: 12px;
    right: 18px;
}

.svg-color {
    stroke: var(--brown);
}

.social-icons {
    fill: var(--brown);
}

.inner-box:hover .svg-color {
    stroke: var(--white);
}

.inner-box:hover .social-icons {
    fill: var(--white);
}

.text {
	background: #fddedb;
    text-align: center;
}

.greeting {
    font-size: 1.7rem;
    margin-top: 35px;
}

.greeting a {
    text-decoration: underline;
	background: #fddedb;

    border: none;
    display: inline;
    padding: 0;
}

.link-box {
    position: relative;

    width: 100%;
    max-width: 394px;
    margin-bottom: -55px;
}

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

    display: block;
    position: relative;

    max-width: 303px;
    padding: 13px 20px 13px 58px;
    margin-bottom: 20px;
    border: 2px solid var(--brown);
    z-index: 2;

    transition: transform 200ms ease-in-out;
}

a:hover {
    background-color: var(--brown);
    color: var(--white);

    transform: translate(9px, -9px);
}

.link-background {
    background-color: var(--brown);

    transform: translate(9px, -89px);
    height: 60px;
    width: 100%;
    max-width: 385px;
}

