* {
    margin: 0;
    padding: 0;
}

ul {
    list-style-type: none;
}

section {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    margin-top: 1%;
    border: 1px solid black;
}

header {
    background-color: antiquewhite;
}

.title {
    text-align: center;
}

.centered-text {
    text-align: center;
    padding: 1%;
}

.big-img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 90vw;
    height: 90vw;
}


#about-chairs {
    display: flex;
    justify-content: center;
}

#about-chairs img {
    width: 30vw;
    height: 30vw;
}

#logo{
    font-size: 30px;
    text-align: center;
}

#menu {
    display: flex;
    justify-content: space-around;
    border: 1px solid black;
    margin: 0px;
    padding: 0px;
}

#gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px;
}

#gallery ul {
    padding-left: 0px;
}

.gallery-item {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.gallery-item img {
    width: 10vw;
    height: 10vw;
}

.gallery-item p {
    margin: 0px;
}

.back-to-menu-button {
    margin: 1vh;
}

.fake-button {
    text-decoration: none;
    color: black;
    border: 1px solid black;
    background-color: rgb(218, 218, 218);
    padding: 1vh;
    margin: 1vh;
}

footer{
    background-color: antiquewhite;
}

footer p {
    margin: 0px;
}