body {
    background-color: #42383D;
    background-image: url("download.svg");
    background-size: 40rem;
    display: flex;
    justify-content: center;
    min-height: 100vh;
}

.container {
    align-self: center;
    width: 80vw;
    height: auto;
    min-height: 80vh;
    padding: 2rem;
    background: linear-gradient(to bottom right, #00154A 50%, #BDB5B3 50%);
    border: 0.3125rem solid rgb(0, 0, 0);
    border-radius: 1.375rem;
    box-shadow: 0.265rem 0.265rem 0rem 0rem #000000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container-content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.container-card {
    display: flex;
    flex-direction: column;
    width: 75%;
    height: auto;
    min-height: 80%;
}

.container-content-pfp {
    height: 7.625rem;
    width: 7.625rem;
    border-radius: 50%;
    padding: 0.4375rem;
    border: 0.4375rem solid black;
}

.container-content-name {
    color: white;
    font-size: 3.125rem;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}

.container-content-bio {
    color: white;
    letter-spacing: 0.025em;
    font-family: Inter, sans-serif;
    font-weight: 300;
    margin: 1.5625rem 0 0.9375rem 0;
}

button {
    border: 0.125rem solid black;
    border-radius: 0.3125rem;
    box-shadow: 0.1em 0.1em 0.1em 0.1em black;
    width: 7.5rem;
    height: 3.125rem;
    transition-duration: 0.5s;
    animation-duration: 0.5s;
    font-weight: 750;
    font-family: Bold, sans-serif;
}

ul {
    padding: 0;
    display: flex;
    flex-direction: row;
    gap: 1em;
}

.container-content-email {
    background-color: #FFAB6E;
}

.container-content-email:hover {
    background-color: #aa7148;
    transform: scale(1.2);
}

.container-content-cat {
    background-color: #FF8FCF;
}

.container-content-cat:hover {
    background-color: #af608d;
    transform: scale(1.2);
}

.container-cat {
    align-self: center;
    width: 80%;
    height: auto;
    background: linear-gradient(to bottom right, #00154A 50%, #BDB5B3 50%);
    border: 0.3125rem solid rgb(0, 0, 0);
    border-radius: 1.375rem;
    box-shadow: 0.265rem 0.265rem 0rem 0rem #000000;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto auto auto;
    grid-template-areas:
    "sleepychair sleepychair stare starewitharm"
    "armbite armbite greyarmbite fallingarmbite"
    "dragonarmbite dragonarmbite dragonarmbite dragonarmbite"
    "home-button home-button home-button home-button";
    gap: 0.625rem;
    padding: 2.5rem 10rem 2.5rem 10rem;
    margin: 3.125rem 4.375rem;
    box-sizing: border-box;
}

.container-cat-sleepychair {
    border-top-left-radius: 0.9375rem;
    object-fit: cover;
    grid-area: sleepychair;
    height: 100%;
    width: 100%;
}

.container-cat-stare {
    grid-area: stare;
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.container-cat-starewitharm {
    border-top-right-radius: 0.9375rem;
    object-fit: cover;
    grid-area: starewitharm;
    height: 100%;
    width: 100%;
}

.container-cat-armbite {
    grid-area: armbite;
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.container-cat-greyarmbite {
    object-fit: cover;
    grid-area: greyarmbite;
    height: 100%;
    width: 100%;
}

.container-cat-fallingarmbite {
    grid-area: fallingarmbite;
    object-fit: cover;
    height: auto;
    width: 100%;
}

.container-cat-dragonarmbite {
    grid-area: dragonarmbite;
    object-fit: cover;
    height: 100%;
    width: 100%;
    border-bottom-left-radius: 0.9375rem;
    border-bottom-right-radius: 0.9375rem;
}

.container-content-home {
    background-color: #FF8FCF;
    grid-area: home-button;
    margin-top: 3.125rem;
}

.container-content-home:hover {
    background-color: #af608d;
    margin-top: 3.125rem;
    transform: scale(1.2);
}