/* Reset Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #f4f4f4;
}

/* Header Styling */
h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Anchor Link Styling */
a, a:visited {
    color: inherit;
    text-decoration: none;
    font-size: 1.25rem;
}

a:hover {
    text-decoration: underline;
}

a:focus {
    outline: 3px dashed #000;
    background-color: #e0e0e0;
}

/* LinkedIn Logo Styling */
.linkedin-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.linkedin-logo {
    width: 32px;
    height: 32px;
}