body {
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
    background-image: linear-gradient(#84807a 1px, transparent 1px),
                      linear-gradient(90deg, #84807a 1px, transparent 1px);
    background-size: 20px 20px;
    animation: move-grid 10s linear infinite;
}

@keyframes move-grid {
    0% { background-position: 0 0; }
    100% { background-position: -100px -100px; }
}

.container {
    position: relative;
    max-width: 850px;
    margin: 20px auto;
    padding: 20px;
    background-color: #a198ff;
    border-radius: 15px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2), 
                10px 0px 20px rgba(0, 0, 0, 0.2), 
                -10px 0px 20px rgba(0, 0, 0, 0.2), 
                0px -10px 20px rgba(0, 0, 0, 0.1);
    border: 3px solid #252422;
    background: white;
}

.sticker {
    position: absolute;
    top: 800px;
    right: -71px; 
    width: 80px; 
    filter: drop-shadow(3px 3px 5px rgba(0, 0, 0, 0.2));
}

.card h1 {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    text-align: center;
    color: #252422;
}

.card h2 {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    text-align: center;
    font-size: 20px;
    margin-top: auto;
    color: #403d39;
}

.card h3 {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    text-align: center;
    color: #403d39;
}

#full_name {
    color: #eb5e28;
}

.card p {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    text-align: center;
    margin-left: 60px;
    margin-right: 60px;
    font-size: 16px;
    color: #84807a;
}

.card p1 {
    font-family: 'Courier New', Courier, monospace;
    text-align: center;
    margin-left: 60px;
    margin-right: 60px;
    padding-top: 10px;
    font-size: 16px;
    color: white;
}

.card p1:hover {
    color: #eb5e28;
}

hr {
    border: none;
    height: 3px;
    width: 95%;
    background-color: #eb5e28;;
    border-radius: 90%;
}

.contact-button {
    display: flex;
    justify-content: center;
    align-items: center;
    block-size: 30px;
    margin-bottom: 15px;
    border-radius: 25px;
    padding: 5px;
    background: black;
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-button:hover {
    background-color: #403d39;
    color: black;
}

#a1 {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    text-decoration: none;
    color: #34312e;
}

#a1:hover {
    color: #eb5e28;
}

#a2 {
    font-size: 50px;
    padding-right: 10px;
    transition: all 0.3s ease;
    color: #252422;
}

#a2:hover {
    color: #eb5e28;
    font-size: 60px;
}