body {
    background-color: #333333;
    font-family: Arial, sans-serif;
    color: #E0E0E0;
    margin: 0;
    padding: 0;
}

p {
    margin-top: 5px;
    margin-bottom: 5px;
}

a {
      text-decoration: none;
      font-size: 24px;
    }
    
a:link {
    color: #D9737C;
}

a:visited {
    color: #B85E67;
}

a:hover {
    color: #E68F98;
}

a:active {
    color: #C55E67;
}

.business-card {
    width: 90%;
    max-width: 750px;
    background: #1A1A1A;
    padding-top: 30px;
    padding-bottom: 30px;
    margin: 5% auto;
    text-align: center;
    font-size: 16px;
    border-radius: 5%;
    position: relative;
    box-shadow: 0 4px 8px #111111;
    transition: box-shadow 0.3s ease;
}
.profile-image {
    max-width: 50%;
    height: auto;
    border-style: solid;
    border-color: #1A1A1A;
    border-width: 1px;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.55), 0 1px 0 rgba(255, 255, 255, 0.03);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
    transform: translateZ(0);
    
}

hr {
    background-color: #333333;
    height: 2px;
    border: none;
    margin-top: 20px;
    margin-bottom: 20px;
}

.full-name {
    font-size: 36px;
    font-weight: 600;
}

.designation, #email {
    font-size: 24px;
}

.company {
    font-style: italic;
    font-size: 18px;
    margin-top: 8px;
}

h2 {
    font-size: 24px;
}

.social-media {
    font-size: 16px;
}

.footer-links {
    width: 100%;
    margin-right: 10px;
    margin-left: 10px;
    padding: 0;
    
}

#portfolio-button {
    background-color: #5D2A2F;
    border: none;
    padding: 8px 12px;
    text-align: center;
    display: inline-block;
    margin: 15px 2px 5px 2px;
    border-radius: 5px;
    box-shadow: 0 4px 8px #111111;    
}
#portfolio-button:hover {
    background-color: #6B3036;
    color: #F5F5F5;
    cursor: pointer;
}

#portfolio-button:active {
    background-color: #4F2428;
}

#portfolio-button a {
    color: #E0E0E0;
    font-weight: bold;
}