
:root {
--tertiary-color: #c8a6d8; 
--quaternary-color: #613263;
--secondary-font-family: monospace;
--primary-color: #f7eddc;
--secondary-color: #b7ce0a;
}

body {
    background: linear-gradient(180.2deg, rgb(120, 85, 137) -6.9%, rgb(35, 9, 31) 76.7%);
    background-repeat: no-repeat; 
    background-size: cover;
    min-height: 100vh;
    font-family: "Playfair Display", serif;
}

h1 {
    color: var(--secondary-color);
    font-family: var(--secondary-font-family);
    font-size: 82px;
    line-height: 100px;
    font-weight: 900;
}

h2 {
    color: black;
    font-size: 34px; 
    font-weight: 700;
}

h3 {
    color: black;
    font-size: 30px;
    line-height: 50px;
    font-weight: 500;
}

h4 {
    color: var(--primary-color);
    font-size: 38px;
}

h5 {
    color: black;
    font-size: 36px;
}

h6 {
    color: var(--primary-color);
    font-size: 48px;
}

p {
    background: var (--primary-color);
    color: black;
    font-size: 18px;
    line-height: 28px;
    font-weight: 100;
}

navbar li {
    font-size: 20px;
}

footer {
    margin: 60px 0;
}

.navbar {
    background-color: rgba(255, 255, 255, 0.5) !important;
    font-weight: 600;
}

.navbar-brand {
    font-size: 22px;
}

.paragraph-descriptions {
    background: var(--primary-color);
    color: black;
    border-radius: 8px;
}

.primary-button {
    background: var(--tertiary-color);
    border-radius: 8px;
    color:  black;
    font-size: 18px;
    line-height: 27px;
    font-weight: bold;
    padding: 18px 30px;
}

.secondary-button {
    background: white;
    color:#613263;
    font-size: 18px;
    line-height: 27px;
    font-weight: bold;
    border: 2px solid #613263;
    border-radius: 8px;
    padding: 18px 30px;
}

.skills-icons {
    font-size: 40px;
    color: black;
}

.social-icons {
    font-size: 45px;
    color: var(--secondary-color);
}

.hero-main {
    background-color: black;
    color: var(--primary-color);
    padding: 120px 5px;
}

.hero-main h2 {
    color: var(--primary-color);
    font-size: 36px;
    font-weight: 500;
    padding: 10px;
}

.paragraph-descriptions h1 {
    font-size: 46px;
    line-height:60px;
}

.paragraph-descriptions h3 {
    font-size: 30px;
    line-height: 42px;
}

.about-paragraph p {
    font-size: 18px;
}

.skills-description p {
    background: black;
    color: white;
    font-size: 16px;
    font-weight: 500;
    padding: 5px;
    border-radius: 30px;
    text-align: center;
}

.hero-projects {
    background-color: black;
    color: var(--tertiary-color);
    font-size: 30px;
    line-height: 45px;
    font-weight: 500;
    font-family: var(--secondary-font-family);
    padding: 100px 5px;
}

.hero-contact {
    background-color: black;
    color: var(--secondary-color);
    font-size: 30px;
    line-height: 45px;
    font-weight: 500;
    font-family: var(--secondary-font-family);
    padding: 100px 5px;
}

.hero-projects p {
    color: var(--secondary-color);
    font-family: var(--secondary-font-family);
    font-size: 36px;
    font-weight: 700;
}

.projects-paragraph {
    font-size: 40px;
}

.project-description-left {
    text-align: left;
    padding-top: 140px;
    padding-right: 60px;; 
}

.project-description-right {
    text-align: right;
    padding-top: 140px; 
    padding-left: 60px;
}

.contact-paragraph a {
    color: black;
    font-size: 25px;
    text-decoration: none;
}

.contact-box {
    background: black;
    border: 1px solid var(--quaternary-color);
    border-radius: 12px;
    padding: 30px 120px;
    margin: 0 150px;
}

.contact-box p {
    color: var(--primary-color);
    margin: 0;
}

.email-link {
    text-decoration: none;
    color: var(--primary-color);
    font-size: 24px;
}

.social-links a {
    background: var(--primary-color);
    color: var(--secondary-color);
    font-size: 18px;
    padding: 12px 14px;
    margin: 0 20px;
    border-radius: 50%;
    transition: all 200ms ease-in-out;
}

.coder {
    background: #23081F;
    font-size: 12px;
    font-family: var(--secondary-font-family);
    color: var(--primary-color);
}

.coder a {
    color: blueviolet;
    text-decoration: none;
}

.navbar li.active a,
.navbar a:hover {
    color: var(--quaternary-color);
    transition: all 200ms ease-in-out;
}

.primary-button:hover {
    background: white;
    border: 2px solid var(--quaternary-color);
    color:var(--quaternary-color);
    transition: all 200ms ease-in-out;
}

.secondary-button:hover {
    background: var(--tertiary-color);
    border-radius: 8px;
    color:  black;
    font-size: 18px;
    line-height: 27px;
    font-weight: bold;
    padding: 18px 30px;
    transition: all 200ms ease-in-out;
}

.contact-paragraph a:hover {
    color: var(--quaternary-color);
    text-decoration: underline;
    transition: all 150ms ease-in-out;
}

.email-link:hover {
    color: var(--secondary-color);
}

.social-links a:hover {
    color: white;
    background: var(--secondary-color);
}

.coder a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {

    h1 {
        font-size: 38px;
        line-height: 48px;
    }

    h3 {
        font-size: 28px;
        line-height: 36px;
    }

    h4 {
        font-size: 28px;
    }

    .hero-main {
        padding: 80px 20px;
    }

    .hero-main h2 {
        font-size: 22px;
    }

    .paragraph-descriptions {
        text-align: center;
    }

    .paragraph-descriptions h1 {
        font-size: 27px;
        line-height: 38px;
    }

    .paragraph-descriptions h3 {
        font-size: 20px;
        line-height: 30px;
    }

    .about-paragraph p {
        font-size: 16px;
        margin-top: 25px;
    }

    .project-description-left {
        text-align: center;
        padding-top: 0px;
        padding-right: 0px;; 
}

    .project-description-right {
        text-align: center;
        padding-top: 0px; 
        padding-left: 0px;
}

}