@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800&display=swap');

/* Global Styles */
* {
    font-family: 'Poppins', sans-serif;
    color: #f9f6ee;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}

body {
    background-color: #121212;
    margin: 0;
    padding: 0;
}

h1 {
    font-size: 40px;
    margin-bottom: 10px; 
}

p {
    font-size: 16px;
    margin-top: 0; 
}

#light {
    font-weight: lighter;
}

/* Header Styles */
header {
    max-width: 100%;
    height: 80px;
    background: #121212;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 100px;
}

.logo {
    font-weight: bold;
    font-size: 45px;
}

.hamburger-nav {
    display: none;
    cursor: pointer;
}

.hamburger-nav .line {
    width: 25px;
    height: 2px;
    background: #f9f6ee;
    margin: 6px 0;
}

.nav-bar ul {
    display: flex;
}

.nav-bar ul li a {
    display: block;
    color: #f9f6ee;
    font-size: 18px;
    padding: 10px 25px;
    transition: 0.2s;
    margin: 0 5px;
}

a:hover {
    color: #e2dfd2;
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* Container Styles */
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: left;
    max-width: 1000px;
    height: 70vh;
    padding-left: 100px;
    animation: fade-up 0.5s;
}

.project-one {
    margin-bottom: 80px;
    text-align: center;
    max-width: 100%;
    animation: fade-up 0.5s;
}

.project-two {
    margin-bottom: 80px;
    text-align: center;
    max-width: 100%;
    animation: fade-up 0.5s;
}

#cancer-analysis-pic img {
    max-width: 80%;
    transition: transform 0.5s ease-in-out; 
}

#cancer-analysis-pic img:hover {
    transform: scale(102%); 
}

#coming-soon-pic img {
    max-width: 80%;
    transition: transform 0.5s ease-in-out; 
}

#coming-soon-pic img:hover {
    transform: scale(102%); 
}

.contact-container {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    margin-bottom: 30px;
    animation: fade-up 0.5s;
}

.contact-left {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
    width: 500px;
}

.connect p {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-bottom: 10px;
    font-size: 16px; 
}

.contact-inputs {
    width: 100%;
    border: none;
    outline: none;
    padding: 15px;
    border-radius: 10px;
    color:#121212;
}

.contact-info textarea {
    min-height: 140px;
    padding-top: 15px;
    border-radius: 10px;
    max-width: 100%;
}

.contact-inputs::placeholder {
    color: #a9a9a9;
}

.contact-left button {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #f9f6ee;
    border: none;
    cursor: pointer;
    background-color: #121212;
}

#about-me {
    display: flex;
    justify-content: center;
    font-size: 50px;
    margin-top: 250px;
}


@keyframes fade-up { 
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0px) scale(1);
    }
}
