* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Space Grotesk", sans-serif;
  color: #333;
}

#text-bubble {
    border: 1px solid #003568;
    padding: 6px 12px;
    background-color: #004282;
    border-radius: 10px;
    display: inline-block;
    margin-bottom: 10px;
    color: white;
    font-size: 12px;
    font-weight: bold;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 40px;
    border-bottom: 1px solid #333;
    background-color: #1a1a1a;

}

.nav-name {
    font-weight: bold;
    font-size: 18px;
}

.nav-bar {

    text-decoration: none;
    font-size: 18px;
    margin-left: 24px;
    color: #f0f0f0;
}

.nav-bar a {
    text-decoration: none;
    color: #aaa;
    margin-left: 18px;
}

nav span {
    color: #aaa;
}


#hero {
  padding: 80px 40px;
  background-color: #141414;
}

#hero h1 {
    font-size: 36px;
    margin-bottom: 12px;
    color: #fff;
}

#hero p{
    color: #c5c5c5;
    font-size: 20px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
}

.hero-buttons #github {
    border: 1px solid #555;
    padding: 12px 16px;
    font-size: 16px;
    margin-top: 12px;
    border-radius: 10px;
    text-decoration: none;
    color: #555;
    font-weight: 500;

}

.hero-buttons #project {
    border: 1px solid #170e29;
    padding: 12px 16px;
    font-size: 16px;
    margin-top: 12px;
    border-radius: 10px;
    text-decoration: none;
    background-color: #2d1b4e;
    color: #f0f0f0;
    font-weight: 500;

}

#about, #projects, #contact {
  padding: 60px 40px;
  border-top: 1px solid #555;
  font-size: 20px;
  color: #c5c5c5;
  background-color: #1a1a1a;
}


h2 {
    font-size: 12px;
    margin-bottom: 6px;
    color: #888;
}

h3 {
    font-size: 32px;
    margin-bottom: 12px;
    color: #fff;
}

#about p, #projects p, #contact p {
    max-width: 800px;
}

#projects p {
    margin-bottom: 12px;
}

h4 {
    font-size: 24px;
    color: #f0f0f0;
}

.project-card-asl {
    border: 3px solid #0f0f0f;
    border-radius: 10px;
    padding: 16px 10px;
    max-width: 500px;
    background-color: #141414;
    color:#888;
}
.project-card-asl p {
    margin-top: 10px;
    font-size: 20px;
}

.card-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-title-row #link {
    align-items: flex-start;
    width: fit-content;
    border: 1px solid #2d1b4e;
    background-color: #2d1b4e;
    font-size: 16px;
    padding: 10px 10px;
    text-decoration: none;
    border-radius: 10px;
    color:#f0f0f0;
}

.projects-grid {
    display: flex;
    gap: 20px;
}

.ASL-Tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
    
}

.ASL-Tags span {
    align-items: flex-start;
    width: fit-content;
    border: 1px solid #2d1b4e;
    background-color: #2d1b4e;
    font-size: 14px;
    padding: 10px 10px;
    border-radius: 10px;
    color:#f0f0f0;
    font-weight: 500;
}

.Website-Tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
    
}

.Website-Tags span {
    align-items: flex-start;
    width: fit-content;
    border: 1px solid #2d1b4e;
    background-color: #2d1b4e;
    font-size: 14px;
    padding: 10px 10px;
    border-radius: 10px;
    color:#f0f0f0;
    font-weight: 500;
}


.project-card-website {
    border: 3px solid #0f0f0f;
    border-radius: 10px;
    padding: 16px 10px;
    max-width: 500px;
    max-height: fit-content;
    background-color: #141414;
    color:#888;
}
.project-card-website p {
    margin-top: 10px;
    font-size: 20px;
}

h1, h2, h3, h4 {
    font-family: "Roboto", sans-serif;
}

.contact-links #text {
    margin-bottom: 12px;
}

#contact a {
    margin-top: 16px;
    align-items: flex-start;
    width: fit-content;
    
    border: 1px solid #2d1b4e;
    background-color: #2d1b4e;
    font-size: 16px;
    padding: 10px 10px;
    border-radius: 10px;
    color:#f0f0f0;
    font-weight: 500;
    text-decoration: none;
    margin-right: 16px;

}

.contact-links {
    margin-top: 12px;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.profile-photo {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top;
    image-rendering: high-quality;
}

.contact-links a:hover {
    background-color: #3d2a6e;
}