/* General styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: white;
    background-image: url(/Hasavyurt.jpg);
    background-size: cover;
    text-shadow: 0px 0px 5px black;
    font-size: 20px;
    font-weight: bold;
}


header {
    background-color: lightskyblue;
    color: white;
    padding: 20px 0;
    text-align: center;
    border-radius: 5px;
}
.Linkedin{
    color: white;
}
header .logo h1 {
    margin: 0;
    font-size: 2.5em;
}

header .logo p {
    margin: 0;
    font-style: italic;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 20px 0 0;
    text-align: center;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

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

/* Main content styles */
main {
    padding: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

h2 {
    color: white;
}

section {
    margin-bottom: 40px;
}
ul {
    list-style-type: square;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.gallery-grid img {
    width: 100%;
    height: 400px;
    border-radius: 5px;
}

/* Footer styles */
footer {
    background-color: lightblue;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 0px;
    border-radius: 5px;
}

footer p {
    margin: 5px 0;
}
