@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@100&display=swap'); /* Import Roboto Mono Light 100 from Google Fonts */

body {
    font-family: 'Roboto Mono', monospace; /* Set font to Roboto Mono */
    background-color: #1a1a1a; /* Dark background color */
    display: flex; /* Use flexbox for layout */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    height: 100vh; /* Full viewport height */
    margin: 0; /* Remove default margin */
}

.container {
    background-color: #333333; /* Dark gray background for the card */
    border-radius: 8px; /* Rounded corners for the card */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Shadow for the card */
    padding: 20px; /* Padding inside the card */
    width: 100%; /* Full width */
    max-width: 400px; /* Maximum width */
    text-align: center; /* Center text */
    position: relative; /* Position relative to allow absolute positioning of share button */
}

.share-btn {
    position: absolute; /* Absolute positioning */
    top: 10px; /* 10px from the top */
    right: 10px; /* 10px from the right */
    background-color: #E84142; /* Avalanche red background color */
    color: rgb(34, 33, 33); /* dark text color */
    padding: 8px 12px; /* Padding inside the button */
    border-radius: 4px; /* Rounded corners */
    cursor: pointer; /* Pointer cursor on hover */
    font-family: 'Roboto Mono', monospace; /* Set font to Roboto Mono */
}

.share-btn:hover {
    background-color: #c4200e; /* dark red on hover */
}

.profile {
    margin-bottom: 20px; /* Margin below the profile section */
}

.profile-pic {
    border-radius: 50%; /* Circular profile picture */
    width: 100px; /* Width of profile picture */
    height: 100px; /* Height of profile picture */
}

.name {
    font-size: 24px; /* Font size for name */
    color: white; /* White text color */
    margin-bottom: 1px; /* Reduced bottom margin */
}

.title {
    font-size: 12px; /* font size for title */
    color: white; /* White text color */
    margin-top: 0; /* Remove top margin*/
}

.highlight {
    color: #E84142; /* Avalanche red color for highlighted text */
}

.bio {
    font-size: 16px; /* Font size for bio */
    color: #cccccc; /* Light gray text color */
}

.links {
    display: flex; /* Use flexbox for layout */
    flex-direction: column; /* Vertical layout */
    gap: 10px; /* Space between links */
}

.link {
    background-color: #E84142; /* Avalanche red background color */
    color: rgb(34, 33, 33); /* dark text color */
    padding: 10px 20px; /* Padding inside the link */
    border-radius: 4px; /* Rounded corners */
    text-decoration: none; /* Remove underline from links */
    display: flex; /* Use flexbox for layout */
    align-items: center; /* Center items vertically */
    justify-content: center; /* Center text horizontally */
    transition: background-color 0.3s ease; /* Smooth background color transition */
}

.link:hover {
    background-color: #c4200e; /* Darker red on hover */
}

.thumbnail {
    width: 30px; /* Width of thumbnail */
    height: 30px; /* Height of thumbnail */
    margin-right: 10px; /* Space to the right of thumbnail */
    border-radius: 4px; /* Rounded corners */
}

.social-links {
    display: flex; /* Use flexbox for layout */
    justify-content: center; /* Center items horizontally */
    gap: 20px; /* Space between social links */
    margin-top: 20px; /* Margin above the social links section */
}

.social-link {
    color: white; /* White color for icons */
    font-size: 24px; /* Size of the icons */
    transition: color 0.3s ease; /* Smooth color transition */
}

.social-link:hover {
    color: #E84142; /* Avalanche red color on hover */
}

.icon {
    width: 24px; /* Width of icon */
    height: 24px; /* Height of icon */
}

.avvy-icon {
    position: relative; /* Relative positioning for fine-tuning */
    top: 3px; /* Adjust the vertical alignment */
}