body{
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding:0;
    background:white;
    color: #333;
}

header {
    background-color:rgb(00,000,00);
    color:aliceblue;
    text-align:center;
    padding: 2rem;

}

main{
    padding:2rem;
    max-width: 800px;
    margin: auto;


}

section{
    margin-bottom:2rem;
    text-align: center;
}

.image{
    width:300px;
    border-radius:10px;
    box-shadow:0 4px 8px rgba(0,0,0,0,1);
    margin-bottom: 1rem;

}

footer{
    background:#333;
    color: floralwhite;
    text-align: center;
    padding:1rem;
}

button {
    padding: 10px 20px;
    font-size: 16px;
    background: blue;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 1rem;
}

button:hover {
    background: lightsalmon;
}


.image-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 1rem;
}

body{
    font-family: 'Orbitron','Segoe UI', sans-serif;
} 



.image-large {
    width: 450px;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}
.navbar {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    background-color: #333;
    padding: 0.75rem 0;
    border-radius: 10px;
}

.navbar a {
    color:aquamarine;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    padding: 0.5rem;
    transition: color 0.3s,border bottom 0.3s;

}


.navbar a:hover {
    color:gold;
    border-bottom: 2px solid gold;
}