/* Reset default margin and padding */
body, h1, ul, li {
    margin: 0;
    padding: 0;
}

/* Apply background image from space */
body {
    background-image: url('bg.jpg'); /* Replace with your image URL */
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    font-family: 'Roboto', sans-serif; /* Use a futuristic font like Roboto */
    color: white;
    text-align: center;
    font-size: large;
    padding: 100px;
}

/* Style for the main container */
.container {
    background-color: rgba(0, 0, 0, 0.3); /* Semi-transparent black background */
    padding: 20px;
    margin-top: 120px;
    border-radius: 10px;
    width: 800px;
    margin: auto;
}

/* Style for the big letter font */
.big-letter {
    font-size: 4em;
    margin-bottom: 10px;
}

/* Style for the contact list */
.contact-list {
    list-style: none;
    padding: 0;
}

/* Style for contact list items */
.contact-list li {
    margin: 10px 0;
}

/* Add some spacing between the contact icon and text */
.contact-icon {
    margin-right: 10px;
}

/* Style for the profile image */
.profile-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-image: url('crjameson_profile.jpeg'); /* Replace with your profile image URL */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin: 0 auto 20px;
}

html, body, label {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
  }
  
  a {
    text-decoration: none;
    color: #007bff; /* Change to the color you prefer */
    font-weight: 700;
}
