html {
    font-size: 100%;
}

body {
    /* background-color: #72D862; */
    color: #230903;
    font-family: "Montserrat", sans-serif;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    padding: 0 2rem 0 2rem;
    font-size: 1.5rem;
}

.cell {
    border: red 1px solid;
}

.wrapper {
    display: grid;
    background-color: white;
    justify-items: center;
}

.header {
    display: flex;
    /* grid-template-columns: 3fr 1fr 1fr; */
    /* justify-items: end; */
    height: 5rem;
    gap: 1.2em;
    /* align-items: center; */
    justify-content: space-between;
    background-color: #36c28a;
    justify-self: stretch;
    font-weight: bold;
    padding: 0 1.2em;
}

.navmenu {
    position: relative;
    right: 0.4rem;
    top: 2rem;
    text-align: right;
}

.navmenu a {
    color: #230903;
    font-size: 1rem;
}

.menu {
    background: #36c28a;
    padding: 1rem 1.5rem;
}

.logo {
    height: 100%;
    justify-self: start;
}

.logo img {
    height: 100%;
    max-width: 65vw;
    width: auto;
}

.title {
    text-align: center;
}

.title h1 {
    color: #36c28a;
}

.title h2 {
    max-width: 45em;
}

.smalltitle {
    text-align: center;
    font-size: 2rem;
    color: #36c28a;
}

button {
    font-family: "Montserrat", sans-serif;
}

button.action {
    display: block;
    background-color: #36c28a;
    border: 1px solid #36c28a;
    color: white;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 1.3rem;
    outline: none;
    outline: 0;
    padding: 0.3rem 2rem;
    text-align: center;
    transition: box-shadow 150ms;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

button.action:hover {
    box-shadow: rgba(0, 0, 0, .15) 0 3px 9px 0;
}

button.action:disabled {
    background-color: grey;
    border: 1px solid grey;
}

button.action:disabled:hover {
    box-shadow: none;
}

button>img {
    width: auto;
    height: 1.5rem;
    /* margin-right: 1em; */
}

button.img {
    background-color: transparent;
    border: 0;
    padding: 0;
    vertical-align: middle;
}

.button-img {
    width: auto;
    height: 1.5rem;
}

.testimonials {
    margin-top: 5em;
    text-align: center;
}

hr {
    width: 70%;
    color: black;
}

button.linklike {
    border: 0;
    background-color: transparent;
    color: black;
    text-decoration: underline;
    text-align: inherit;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    padding: 0;
    display: inline;
}

button.linklike {
    box-shadow: none;
}

.navmenu summary::marker {
    font-size: 0;
}

.navmenu summary::-webkit-details-marker {
    display: none;
}

.nomargin {
    margin: 0;
}

.pointer {
    cursor: pointer;
}

.message {
    max-width: 65em;
    font-size: larger;
}

.inline-edit {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}

.topmargin {
    margin-top: 1em;
}

.star-container {
    display: inline-flex;
    align-items: center;
    position: relative;
    margin-right: 1rem;
    margin-left: 1rem;
}

.star {
    width: 1.8rem;
    padding: 0.1rem;
    display: flex;
}

.big-star {
    width: 2rem;
    padding: 0.1rem;
    display: flex;
}


@media only screen and (max-width: 1200px) {
    .star {
        width: 1.4rem;
        padding: 0.075rem;
        display: flex;
    }
}
