
@import url('https://fonts.googleapis.com/css2?family=Hepta+Slab:wght@600&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

body {
    font-family: "Inter",  sans-serif;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    text-align: center;
}

.container {
    max-width: 500px;
}

.error {color:#ff0000
}

.logo-top {
    margin-top: 40px;
    width: 200px;
    height: auto;
}

.gallery {
    display: flex;
    margin-top: 30px;
    gap: 15px;
    align-items: flex-start;
    justify-content: center;
}
@media (max-width: 512px) {
    .gallery {
        flex-direction:column;
    }
}



.main-image {
    width: 100%;
    /*height: auto;*/
    flex:2
}

.side-images {
    display: flex;
    flex-direction: column;
    gap: 15px;
    /*width:100%;*/
    flex:1;
}

@media (max-width: 512px) {
    .side-images {
        flex-direction: row;
    }
}


    .side-images img {
        height: auto;
        width: calc(100% + 5px);
        object-fit: cover;
    }

@media (max-width: 512px) {
    .side-images img {
        height: auto;
        width: 50%;
    }
}

.buttons {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-direction: row;
}

@media (max-width: 512px) {
    .buttons {
        flex-direction: column;
    }
}


.buttons a {
    padding: 10px 20px;
    border-radius: 10px;
    text-decoration: none;
    color: white;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    transition: background 0.3s;
}
.btnInsta {
    background-color: #dac98c;
}
.btnEtsy {
    background-color: #79b098;
}
.btnList {
    background-color: #ef845e;
}

.buttons a:hover {
    background: #c2c2c2;
}

.logo-bottom {
    margin-top: 60px;
    width: 60px;
    height: auto;
}


.form-container {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 300px;
}

h2 {
    text-align: center;
    margin-bottom: 20px;
}

label {
    display: block;
    margin: 10px 0 5px;
}

input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-sizing: border-box;
}

button {
    margin-top: 20px;
    width: 100%;
    padding: 10px;
    background-color: rgb(0, 0, 0);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
}

    button:hover {
        background-color: #333;
    }
  