body {
    font-family: "Roboto Mono", sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #141414;
    position: relative;
    background-image: url(noise.png);
    background-attachment: fixed;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes SlideIn {
    0% {
        opacity: 0;
        top: -150px;
    }

    100% {
        opacity: 1;
        top: 0px;
    }
}

.card {
    background-color: #1e1e1e;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: fit-content;
    padding: 20px;
    position: relative;
    transition: 0.3s;
    border: 2px solid #3a3a3a;
    animation: SlideIn 1s;
}

.card-curl {
    content: "";
    position: absolute;
    bottom: -2px;
    right: -1.7px;
    width: 20px;
    height: 20px;
    background-image: linear-gradient(to left top, #141414 45%, #1e1e1e 55%);
    border-radius: 6px 0 12px 3px;
    transition: all 0.3s ease;
    border-top: 3px solid #3a3a3a;
    box-shadow: rgba(0, 0, 0, 0.493) -6px -2px 4.5px -2px;
    border-left: 3px solid #3a3a3a;
}

.card-curl:hover {
    width: 25px;
    height: 25px;
    /* background-image: linear-gradient(to left top, #111111 50%, #1e1e1e 45%); */
}

card:hover {
    box-shadow: 0 0 20px 1px rgba(255, 255, 255, 0.2);
}

.profile-picture {
    position: absolute;
    top: -40px;
    right: 20px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 5px solid #3a3a3a;
    border-style: double;
    object-fit: cover;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 1.8rem;
    margin: 0;
    color: #b1b1b1;
}

p {
    margin-top: 10px;
    line-height: 1.4;
    color: #b1b1b1;
}

.link {
    text-decoration: none;
    color: inherit;
    margin-left: 5px;
    color: #b1b1b1;
    text-decoration: none;
    margin-top: 10px;
}

.link a {
    color: #b1b1b1;
    text-decoration: none;
    margin-top: 10px;
    line-height: 1.6;
    margin-left: 5px;
    position: relative;
    animation: fadeIn 1s;
}

.link a:hover {
    text-decoration: underline;
}

.email-contact {
    text-align: center;
    margin-top: 8px;
    animation: fade 1s;
    animation: fadeIn 2s;
}

.email-contact a {
    color: #3d3b3b;
    text-decoration: none;
    position: relative;
    font-size: 1rem;
    font-weight: 500;
    animation: SlideIn 1s;
}

.email-contact a:hover {
    text-decoration: underline;
}
