/*Grid-Garden Programmierung*/
header, section, aside, footer {
    box-sizing: border-box;
}

body {
font-family: "Barlow", Helvetica;
margin: 0px;
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr;
} /*row und column eh nicht vertauscht oder?*/

header {
    background-image: url(Exercise_week_4_TributePage/ada_banner.jpeg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    padding: 3em;
    font-size: 2em;

    grid-column: 1/5;
}

section {
/*grid-area: 2/1/3/4;*/
/*row-start, column-start, row-end, colum-end*/
grid-column: 1 / 4;
padding-right: 1em;
}

.testimonials {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

    .testimonials img {
        border-radius: 50%;
        width: 100%;
        /*space between*/
    }

    .testimonials figcaption {
        text-align: center;
    }

figure {
    margin: 0px;
}

aside {
    grid-column: 4 / 5;
}

    .ImageLink {
        padding-top: 1em;
        width: 100%; /*darf ich das so machen?*/
    }

footer {
    margin-bottom: 0px;
    grid-column: 1 / 5;
}

p {
    font-size: 1.3em;
}
h1 {
    color: rgb(135, 219, 230);
}

h2 {
    font-size: 1.6em;
    font-weight: bold;
}

a {
    color: pink;
    /*wie nochmal ohne unterstrich machen?*/
    text-decoration: none;
}

nav {
    display: inline;
    font-size: 1.3em;
}

.gallery {
    display: grid; /*brauch ich das noch?*/
    grid-template-columns: 1fr 1fr 1fr;
}

.gallery img {
    width: 100%;
}