* {
    margin: 0;
    padding: 0;
}

body, html {
    background-color: #fff;
    color: #fff;
    font-size: 16px;
    font-family: 'Space Mono', Arial, serif;
}

h1 {
    font-size: 4em;
    font-weight: 400;
}

h3 {
    font-size: 1.2em;
    font-weight: 400;
}

.linkedin i {
    margin-top: 0.75em;
    font-size: 2.5em;
    color: #fff;
}

.container {
    background: linear-gradient(to right, #0bceaf, #20c997e6); 
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    text-align: center;
    min-height: 100vh;
    color: #fff;
}

.profile-image {
    width: 250px; /* Adjust as needed */
    height: 250px; /* Adjust as needed */
    border-radius: 50%; 
    object-fit: cover; 
    overflow: hidden; 
    margin-bottom: 1.5em;
    border: 0.125em solid rgba(255, 255, 255, 0.7); /* 2px wide, solid, gray border */
  }

  footer {
    font-size: 0.75em;
    text-align: center;
    margin-top: -30px;
  }

  footer p {
    display: inline-block;
  }

  footer p::before {
    content: "-";
    margin-right: 5px; /* Adjust margin as needed */
  }
  
  footer p::after {
    content: "-";
    margin-left: 5px; /* Adjust margin as needed */
  }
  

  