* {
    text-align: center;
    font-fammily: 'Arial', sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: white;
}

h1, p {
    text-align: center;
}

ul {
    list-style-position: inside;
    list-style-type: disc;
}

.header {
    background-color: darkcyan;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 32px;
    width: 100%;
}

.header-links {
    display: flex;
    list-style-type: none;
    gap: 20px;
}

.header-links a {
    text-decoration: none;
    color: white;
    font-size: 1.1em;
    transition: color 0.3s;
}

.header-links a:hover {
    color: darkblue;
}

.intro {
    margin-top: 50px;
    padding: 30px;
}

.intro h1 {
    font-size: 3.5em;
    margin-bottom: 10px;
    color: #333;
}

.intro p {
    font-size: 1.2em;
    color: #666;
    max-width: 700px;
    margin: 10px auto;
    padding-top: 20px;
}

.info {
    background-color: lightblue;
    border: 2px solid darkblue;
    border-radius: 15px;
    padding: 15px;
    margin-top: 30px;
}

.info {
    background-color: lightblue;
    border: 2px solid darkblue;
    border-radius: 15px;
    padding: 15px;
    margin-top: 30px;
}

.project-container {
    display: flex;
    flex-direction: row;
    margin: 12px;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
}

.project-card {
    background: white;
    border: 4px solid lightblue;
    border-radius: 12px;
    width: 280px;
    margin: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.projlink{
    text-decoration: none;
    color: darkcyan;
    font-weight: bold;
}

.project-card:hover {
    transform: scale(1.05);
}


.project-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 12px;
}

.projlink:hover {
    color: darkblue;
}

.project-card h3 {
    margin-top: 0;
    color: darkblue;
}

.contact {
}

.contact-list {
    list-style: none;
    padding:0;
    margin: 0;
    font-size: 1.2em;
}

.contact-list li {
    margin: 12px 0;
    display: flex;
    gap: 10px;
    align-items: center;
}

.contact-list a {
    color: darkcyan;
    text-decoration: none;
}

.contact-list a:hover {
    color: darkblue;
    text-decoration: underline;
}