#store {
    position: relative;
}
#store {
    box-sizing: border-box;
    padding: 3em 8em;
}
@media screen and (max-width: 1024px) {
    #store {
        padding: 0 20px;
    }
}
#store header {
    margin-bottom: 3em;
}
#store header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-items: center;
    gap: 10px;
}
#store header h3,
#store header p {
    text-align: center;
}
#store header h3 {
    font-family: 'aesthetic-font';
    font-size: 45px;
    font-weight: 400;
    color: var(--color__2);
}
#store header p {
    font-family: 'content-font';
    font-size: 16px;
    color: #000;
}