body {
    background-color: #f2f2f2;
    color: #222;
    font-family: Arial, sans-serif;
    margin: 0;
}

header {
    background-color: #222;
    color: white;
    padding: 20px;
    text-align: center;
}

header h1 {
    margin: 0 0 15px 0;
}

nav a {
    color: white;
    text-decoration: none;

    margin: 0 10px;
}

nav a:hover {
    text-decoration: underline;
}

main {
    max-width: 900px;
    margin: auto;
}

section {
    background-color: white;

    margin:25px 15px;
    padding: 25px;
    border-radius: 8px;
}

section h2 {
    color: #174ea6;
}

.intro {
    text-align: center;
    background-color: #dcecff;
}

.intro h2 {
    font-size: 35px;
}

.button {
    display: inline-block;
    background-color: #174ea6;
    color: white;
    padding: 10px 16px;
    margin-top: 10px;
    text-decoration: none;
    border-radius: 5px;
}

.button:hover {
    background-color: #0d3b7a;
}

.projects {
   display: flex;
   gap: 20px;
}
.project {
    border: 1px solid #ccc;
    padding: 20px;
    flex: 1;
    border-radius: 6px;
}

.project a {
    color: #174ea6;
}

.skills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skills span {
    background-color: #e3e3e3;
    padding: 8px 12px;
    border-radius: 5px;
}

.photos {
    display: flex;
    gap: 20px;
}

.photos div {
    flex: 1;
}

.photos img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 6px;
} 

footer {
    background-color: #222;
    color: white;
    text-align: center;
    padding: 25px;
    margin-top: 30px;
}

.secret {
    margin: 50px 0 0 90% ;
}

@media (max-width: 600px) {
    nav a {
        display: block;
        margin: 8px;
    }

    .projects {
        flex-direction: column;
    }

    .photos {
        flex-direction: column;
    }

    .photos img {
        height: auto;
    }
}