* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    background-color: #1f1f1f;
    color: #fff;
}

header {
    background-color: #6a1b9a;
    color: #fff;
    text-align: center;
    padding: 30px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

header h1 p1 {
    font-family: "Arial Black", sans-serif;
    font-size: 2.8em;
    margin: 0;
}

nav {
    text-align: center;
    margin-top: 30px;
}

button {
    font-size: 1.2em;
    padding: 15px 30px;
    margin: 10px;
    background-color: #673ab7;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

button:hover {
    background-color: #512da8;
}

.gallery {
    border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 20px;
}

.gallery a {
    border-radius: 25px;
    display: block;
    margin: 10px;
    transition: transform 0.3s ease;
    max-width: 364px; 
    max-height: 200px; 
    overflow: hidden; 
}

.gallery a img {
    border-radius: 25px;
    width: 100%;
    height: auto;
}

.gallery a:hover {
    border-radius: 25px;
    transform: scale(1.1);
}
