* {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

html {
    font-family: 'Poppins', sans-serif;
}

li {
    list-style: none;
    width: 100px;
}

/* Navigation Bar */
.navigation-container {
    height: 90px;
    display: flex;
    text-align: center;
    justify-content: space-between;
    align-items: center;
    padding: 0 5px;
    background-color: rgb(240, 237, 233);
    font-size: 20px;
    font-weight: 400;
    position: fixed;
    top: 0;
    width: 100%;
}

.navigation-container .logo {
    border-radius: 50%;
    width: 50px;
    margin-left: 40px;
    border: 2px solid blueviolet;
}

.navigation-container .nav-links {
    display: flex;
    justify-content: space-between;
    text-align: center;
    gap: 40px;
}

.navigation-container .nav-links a {
    color: rgb(37, 8, 69);
}

.navigation-container .nav-links a:hover {
    color: blueviolet;
    border-bottom: 2px blueviolet solid;
    border-top: 2px blueviolet solid;
}

.navigation-container .cta-container {
    margin-right: 40px;
}

.navigation-container .cta-container .cta-links {
    display: flex;
    gap: 30px;
}

.navigation-container .cta-container .cta-links .primary-cta {
    border: 2px blueviolet;
    padding: 12px;
    border-radius: 5px;
    background-color: blueviolet;
    color: rgb(255, 255, 255);
}

.navigation-container .cta-container .cta-links .secondary-cta {
    border: 2px blueviolet solid;
    padding: 10px;
    border-radius: 5px;
    background-color: rgb(255, 255, 255);
    color: blueviolet;
}

.navigation-container .cta-container .cta-links .primary-cta:hover {
    background-color: rgb(177, 114, 236);
    padding: 12px;
}

.navigation-container .cta-container .cta-links .secondary-cta:hover {
    border: 2px blueviolet solid;
    padding: 10px;
    border-radius: 5px;
    background-color: rgb(243, 215, 215);
    color: blueviolet;
}

/* Hero Section */
.hero-section {
    display: flex;
    justify-content: space-between;
    margin: 60px;
    align-items: center;
    margin-top: 120px;
    background-color: rgb(239, 239, 239);
    border: rgb(239, 239, 239);
    border-radius: 20px;
    padding: 0 50px;
}

.hero-section h1 {
    font-weight: 700;
    font-size: 68px;
}

.hero-section p {
    font-weight: 400;
    font-size: 24px;
    margin-bottom: 30px;
    font-family: 'Google Sans Code', sans-serif;
}

.hero-section a {
    border: 2px blueviolet solid;
    padding: 10px;
    border-radius: 5px;
    background-color: rgb(255, 255, 255);
    color: blueviolet;
}

.hero-section a:hover {
    border: 2px blueviolet solid;
    padding: 10px;
    border-radius: 5px;
    background-color: blueviolet;
    color: rgb(255, 255, 255);
    font-weight: 420;
}

.hero-section .headshot img {
    border-radius: 50%;
    border: 5px blueviolet solid;
    width: 400px;
}