/*Bazeja april 2021 grid*/
:root{
    --clr-alert-border: hsl(0, 100%, 27%);
    --clr-navtext-main:hsl(0, 0%, 60%);
}
.grecaptcha-badge { 
    visibility: hidden; 
}

/*tekst indeling*/

h1 {
    font-size: 2.5rem;
    text-transform: uppercase;
    line-height: 2rem;
}

h2 {
    font-size: 2rem;
    line-height: 3rem;
}

h3 {
    font-size: 1.3rem;
    line-height: 3rem;
}

h4 {
    font-size: 1rem;
    line-height: 2rem;
}

h5 {
    font-size: 0.75rem;
}

h6 {
    font-size: 0.50rem;
}

p {
    font-size: 1.2rem;
    word-spacing: 0.4em;
    line-height: 1.7rem;
    padding: 1rem;
}

ol{
    padding:0 0.9rem;
}

dl {
    background-color: var(--clr-backgroundtext);
    padding:1rem;
}

dt {
    font-weight: 800;
    line-height: 3rem;
}

dl, dd {
    font-size: 1.2rem;
    word-spacing: 0.4em;
    line-height: 1.8rem;
}

dd {
    margin-bottom: 1rem;
}

/*links, visited etc*/

.signuperror {
    color: var(--clr-error);
}

.signupsuccess {
    color: var(--clr-succes);
}
a, link {
    font-weight: 600;
    color: var(--clr-navtext-main);
    text-decoration: none;
}

/* 

a:hover {
    color: hsl(0, 0%, 41%);
}

a:visited {
    color: hsl(0, 0%, 60%);
} */

a:hover img {
    opacity: 0.8;
}

/*images*/

/*formulieren*/

fieldset {
    margin: 0.5em;
    padding: 2rem;
    border: 1px solid hsl(0, 0%, 60%);
}
.recap{
    font-size: 0.5rem;
    margin: auto;
    line-height: 0.8rem; 
}

@media screen and (min-width: 768px) {
    fieldset {
        width: 30rem;
        padding: 1%;
    }
    .recap{
        padding: 0 10rem 0; 
    }
}

/*uitlijnen van de teksten t.o.v. input- & textarea-velden*/

/* label {
    width: 12em;
    float: left;
    text-align: left;
} */

@media screen and (min-width: 768px) {
    /* label {
        text-align: right;
    } */
}

/*styling input & textarea*/

input, textarea {
    outline: none;
    height: 24px;
    width: 9.57rem;
    background-color: hsl(0, 0%, 21%);
    border-width: 1px;
    border-style: solid;
    border-color: hsl(0, 0%, 60%);
    margin: 0.2rem;
    color: hsl(0, 0%, 100%);
}

textarea {
    resize: vertical;
    height: 50px;
    max-height: 100px;
}

input:focus, textarea:focus {
    border: 1px solid var(--clr-alert-border);
}

input [type=text] text+size {
    width: auto;
}

.check-radio {
    margin: 1.2rem;
}

@media screen and (min-width: 768px) {
    textarea {
        height: 50px;
        max-height: 150px;
    }
    input [type=text] text+size {
        width: auto;
    }
    .check-radio {
        margin: 8.2rem;
    }
}

/*buttons*/

.button-send {
    width: 12em;
    height: 28px;
    background-color: hsl(0, 0%, 21%);
    border: 1px solid;
    border-color: hsl(0, 0%, 60%);
    color: hsl(0, 0%, 100%);
    cursor: pointer;
    margin: 4px;
}

.button-send:hover {
    background-color: hsl(0, 0%, 77%);
    color: hsl(0, 0%, 21%);
    font-weight: bold;
}

@media screen and (min-width: 768px) {
    .button-send {
        margin: 4px;
    }
}

/*button by Follow Andrew*/

.button {
    transition: transform .5s;
    display: flex;
    justify-content: center;
    padding: 0.45rem 0.45rem;
    text-decoration: none;
    color: hsl(0, 0%, 7%);
    text-align: center;
    text-shadow: 0 0 2px hsl(0, 0%, 100%);
    background-color: hsl(0, 0%, 80%);
    background-clip: padding-box;
    border: 1px solid;
    border-color: hsl(0, 0%, 80%) hsl(0, 0%, 60%) hsl(0, 0%, 67%);
    border-radius: 3px;
    background-image: linear-gradient(to bottom, hsl(0, 0%, 94%), hsl(0, 0%, 47%));
    box-shadow: inset 0 1px hsla(0, 39%, 59%, 0.09), 0 1px 1px hsla(0, 0%, 0%, 0.2);
}

@media (min-width: 768px) {
    .button {
        padding: 1rem 1rem;
        margin: 1rem 5.5rem;
    }
}

.button:hover {
    transform: scale(1.2);
    background-color: hsl(0, 0%, 67%);
    background-image: linear-gradient(to bottom, hsl(0, 0%, 80%), hsl(0, 0%, 33%));
}

.dark {
    transition: all .5s;
    color: hsl(0, 0%, 100%);
    border-radius: 4px;
    border: 1px solid hsl(0, 0%, 100%);
    text-shadow: 0 0 2px rgba(0, 0, 0, .7);
    background-color: hsl(0, 0%, 21%);
    background-image: linear-gradient(to bottom, hsl(0, 0%, 16%), rgb(27, 27, 27));
}

.dark:hover {
    background-color: hsl(0, 0%, 77%);
    background-image: linear-gradient(to bottom, hsl(0, 0%, 95%), hsl(0, 0%, 63%));
    color: hsl(0, 0%, 21%);
    border: none;
}