* {
    padding: 0;
    margin: 0;
    font-family: "Strawberry";
    font-size: 24px;
    box-sizing: border-box;
    letter-spacing: 0.96px;
    transition: all 200ms ease;
    text-align: center;
}

body {
    position: relative;
    background-color: #FDC9DE;
    height: 100vh;
}

header {
    position: fixed;
    width: 100%;
    background-image: url(imgs/headerBg.svg);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 32px;
}

main {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-right: 100px;
    padding-left: 100px;
    width: 100%;
    background-image: url(imgs/gardenBgImg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100vh;
}

@font-face {
    font-family: "Strawberry";
    src: url(fonts/Strawberry\ Shortcake\ NEW.ttf);
}

.row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.alignCenter {
    justify-content: center;
    align-items: center;
}

.gap12 {
    gap: 12px;
}

.width {
    width: 100%;
}

.colorBg {
    background: #F8EFDE;
    padding: 10px;
    align-items: center;
    display: flex;
    border-radius: 38px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.colorBgInner {
    color: #F06B7D;
    line-height: 100%;
    width: 100%;
    display: flex;
    padding: 32px;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    border-radius: 28px;
    border: 2px dashed #F5949E;
    background: #F8EFDE;
}

.colors {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.padding32 {
    padding-right: 32px;
    padding-left: 32px;
}

.col {
    display: inline-flex;
    flex-direction: column;
    gap: 12px;
}

.flexEnd {
    align-items: flex-end;
}

.flexStart {
    align-items: flex-start;
}

.gap32 {
    gap: 32px;
}

.buttonStyle {
    width: 100%;
    background: #F06B7D;
    color: #FFF;
    padding: 10px 24px;
    border-radius: 57px;
    filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
    box-shadow: 0 9px 4px 0 rgba(255, 255, 255, 0.25) inset, 0 -7px 4px 0 rgba(0, 0, 0, 0.25) inset;
}

.buttonStyle:hover {
    filter: none;
}

.color {
    height: 52px;
    width: 52px;
    border-radius: 100px;
    filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
    box-shadow: 0 9px 4px 0 rgba(255, 255, 255, 0.25) inset, 0 -7px 4px 0 rgba(0, 0, 0, 0.25) inset;
}

.color:hover {
    filter: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
}

.yellow {
    background-color: #FAEE86;
}

.purple {
    background-color: #AB416A;
}

.pink {
    background-color: #F06B7D;
}

.orange {
    background-color: #F19F48;
}

.blue {
    background-color: #3D7AB4;
}