body {
    width: 100%;
    background-image: url(https://www.vktobox.de/src/vktobox-bg-small.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    color: white;
    text-shadow: 0px 2px 20px rgb(63, 0, 0);
    filter: drop-shadow(0px 0px 10px rgb(73, 40, 40));
    align-items: center;

}

a {
    color: white;
}

ul {
    list-style-type: upper-roman;
    margin: 0;
    padding: 0;
  }

/* For devices 520px and larger: */
@media only screen and (min-device-width: 520px) {
    body {
      background-image: url('https://www.vktobox.de/src/vktobox-bg.jpg');
    }
  }

h1 {
    font-size: 30px;
    text-shadow: 0px 0px 10px rgb(245, 244, 244);
    color: rgb(73, 40, 40);
    text-align: center;
}

.grid-layout {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    flex-direction: column;

    /*
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-gap: 10px;
    grid-auto-flow: row;
    grid-auto-rows: minmax(100px, auto);
    grid-auto-columns: minmax(100px, auto);
    */
}

/* For devices 520px and larger: */
@media only screen and (min-device-width: 520px) {
    .grid-layout {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(3, 1fr);
        grid-gap: 10px;
        grid-auto-flow: row;
        grid-auto-rows: minmax(100px, auto);
        grid-auto-columns: minmax(100px, auto);;
    }
  }

main {
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

.blog-link {
    width: fit-content;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-self: start;
    margin-left: 50px;
    grid-column-start: 1;
    grid-row-start: 1;
    font-size: large;
    color: white;
}

.blog-beschrieb {
    width: fit-content;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-self: start;
    margin-left: 50px;
    grid-column-start: 1;
    grid-row-start: 2;
    font-size: normal;
}

.mts-link {
    width: fit-content;
    height: fit-content;
    grid-column-start: 3;
    grid-row-start: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-self: end;
    margin-right: 50px;
    font-size: large;
}

footer {
    text-shadow: 0px 0px 10px rgb(245, 244, 244);
    font-size: larger;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    position: relative;
    bottom: 0;
}
