body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #ffffff;
    font-family: "Copperplate", fantasy;
    flex-direction: column;
}

.container {
    text-align: center;
}

.card {
    width: 355px;
    height: 170px;
    background:
        radial-gradient(rgba(0, 0, 0, 0.03) 10%, transparent 20%) 0 0 / 6px 6px,
        linear-gradient(transparent, rgba(0, 0, 0, 0.02));
    border: 1px solid #ddd;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    transform: perspective(500px) rotateX(0deg) rotateY(0deg);
    transition: transform 0.1s ease-out;
    padding: 15px;
    color: #776e58;
}

.card-content {
    position: absolute;
    width: 100%;
    height: 100%;
    text-align: center;
    background-color: #eeede7;
}

.top-left {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 10px;
    letter-spacing: 0.4px;
}

.top-left a {
    text-decoration: none;
    color: inherit;
}

.top-right {
    position: absolute;
    top: 8px;
    right: 15px;
    font-size: 15px;
    letter-spacing: 0.4px;
}

.card-website {
}

.top-right a {
    text-decoration: none;
    color: inherit;
}

.center {
    font-size: 15px;
    font-weight: bold;
    margin-top: 100px;
    letter-spacing: 0.8px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.center a {
    text-decoration: none;
    color: inherit;
}

.title {
    font-size: 10px;
    margin-top: 3px;
    letter-spacing: 0.6px;
}

.bottom {
    margin-top: 50px;
    font-size: 8px;
    letter-spacing: 0.4px;
}

.quote {
    opacity: 0;
    transition: opacity 2s ease-in-out;
    font-style: italic;
    font-size: 13px;
    max-width: 355px;
    text-align: center;
    margin-top: 100px;
    line-height: 1.4;
    padding: 15px;
}

.links {
    opacity: 0.5;
    position: absolute;
    justify-content: center;
    align-items: center;
    width: 355px;
    margin-top: 100px;
    padding: 15px;
}

/* .container:has(.links:hover) .top-left a {
    background-color: lightblue;
} */

/* .links a {
    padding: 5px;
    text-decoration: none;
} */

.email {
    padding: 5px;
    text-decoration: none;
}

.top-left:hover {
    background-color: rgba(139, 0, 0, 0.25);
}

.container:has(.email:hover) .top-left a {
    background-color: rgba(139, 0, 0, 0.25);
}

.center a:hover {
    background-color: rgba(139, 0, 0, 0.25);
}

.linkedin {
    padding: 5px;
    text-decoration: none;
}

.container:has(.linkedin:hover) .center a {
    background-color: rgba(139, 0, 0, 0.25);
}

.website {
    padding: 5px;
    text-decoration: none;
}

.card-website:hover {
    background-color: rgba(139, 0, 0, 0.25);
}

.container:has(.website:hover) .card-website {
    background-color: rgba(139, 0, 0, 0.25);
}

.credit {
    font-size: 9px;
    opacity: 0.75;
}

.show-quote {
    opacity: 1;
    animation: fadeToRed 3s ease-in-out forwards;
}

@keyframes fadeToRed {
    0% {
        color: black;
    }
    100% {
        color: darkred;
    }
}

.title,
.top-left,
.top-right,
.bottom-left {
    text-shadow: 0.5px 0.5px 1px rgba(0, 0, 0, 0.15);
}
