* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background: #37364e;
    color: #f4e9d4;
}
main {
    text-align: center;

}

.add_button {
    padding: 10px 30px;
    margin: 10px;
    background: #355d69;
    color: white;

}

.swatch {
    width: 100px;
    height: 100px;
    position: relative;
}

.palette__edit,
.swatch__label {
    position: absolute;
    padding: 1px 4px;
    background: #44444444;
    color: white;
}
.swatch__label {
    left: 0;
    top: 0;
 }

.palette__edit {
	bottom: 0;
	left: 0;
    background: #355d69;
}

.palette {
    display: flex;
    flex: 1;
    flex-wrap: wrap;
	position: relative;
    padding: 5px;
    background: #7c768d;
}

.gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100vw;
    position: relative;
    gap: 10px;
}

.app {
    max-width: 100vw;
    display: flex;
    position: relative;
}

.palette-input {
    border: 1px solid #37364e;
    width: 200px;
    height: 150px;
}
