body {
    margin: 0;
    background-color: black;
}

header {
    text-align: center;
    padding: 10px;
    color: white;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.gallery-container {
    margin: 0 auto;
    width: 90%;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: 0 0 0px rgba(252, 202, 1, 0.958);
}

.artwork {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    place-items: center;
    border:6px double gold;
    border-radius: 10px;
    position: relative;
    z-index: 10
}

.top-img {
    margin: 12% auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    place-items: center;
    width: 75%;
    height: 50%;
    position: absolute;
    top: 0;
    left: 1;
    z-index:20;
}

img {
    width: 80%;
    height: 80%;
    position: relative;
    display: flex;
    border:6px double gold;
    border-radius: 10px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: 0 0 30px rgba(252, 202, 1, 0.958);
}

.form-container {
    margin: 10px auto;
    display:flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    color: #ffffff;
    padding: 50px;
    border: 1px solid gold;
    border-radius: 10px;
    box-shadow: 0 0 40px rgba(252, 202, 1, 0.958);
}

form {
    width: 100%;
    max-width: 400px;
    text-align: center;
}

label {
    margin-bottom: 10px;
}

input[type="text"],
input[type="email"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

input[type="submit"] {
    background-color: #007BFF;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 0 50px rgba(252, 202, 1, 0.958);
}

@media screen and (max-width: 1024px) {
    .gallery-container {
        grid-template-columns: 1fr;
    }
    .top-img {
        width: 60%;
        height: 30%;
    }
    h1 {
        font-size: 25px;
    }
    .form-container {
        margin-right: 30px; ;
        width: 80%;
    }
}

@media screen and (max-width: 768px) {
    .form-container {
        width: 50%;
        margin: 10px auto;
    }
}