@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,700;1,400&display=swap');

.body-container {
    font-family: 'Roboto Serif', serif;
    font-size: 16px;
    width: 100%; 
    background-color: #F5F3EF;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

a {
    color: #000;
}

body a:hover {
    color: slategrey;
}

p,
li {
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
    white-space: normal;

    /* border: 1px solid red; */
}

/* ##### GRID-CONTAINER ##### */

.grid-container {
    display: grid;
    grid-template-areas: 
    "header header header"
    "subheader subheader subheader"
    "hero hero hero"
    "main main main"
    "footer footer footer";
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: auto;
}

.sub-grid-container-right {
    display: grid;
    grid-template-areas: 
    "german german picture"
    "english english picture";
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: auto;
}

.sub-grid-container-left {
    display: grid;
    grid-template-areas: 
    "picture german german"
    "picture english english";
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: auto;
}

/* ##### CARDS ##### */

.cards {
    background-color: #FFFFFF;
    border-radius: 24px;
    box-shadow:0 2px 24px rgba(0, 0, 0, 0.05);
    width: 1240px;
    max-width: 75%;
    margin: 15px 0;
}

.cards-german {
    grid-area: german;
    display: flex;
    justify-content: left;
    align-items: center;
    margin: 0 30px;
}

.cards-english {
    grid-area: english;
    display: flex;
    justify-content: left;
    align-items: center;
    margin: 0 30px;
}

.cards-picture {
    grid-area: picture;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cards-picture img {
    max-height: 300px;
    margin: 15px 15px;
    align-self:center;
    border-radius: 200px;
    box-shadow:0 2px 24px rgba(0, 0, 0, 0.05);
}

.cards2 {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;

    background-color: #FFFFFF;
    border-radius: 24px;
    box-shadow:0 2px 24px rgba(0, 0, 0, 0.05);
    max-width: 100%;
    margin: 15px 0;
}

.cards2 p {
    margin: 15px;
}

.german-cards2,
.english-cards2 {
    max-width: 45%;
    margin: 10px;
    padding: 35px;
}

.german-cards2 h3,
.english-cards2 h3 {
    text-align: left;
    position: relative;
    left: 15px;
}

/* ##### GRID ITEMS ##### */

header,
section,
main,
footer {
    margin: 0 80px;
}

/* *** HEADER *** */

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    grid-area: header;
    margin-top: 30px;
}

header nav {
    width: 35%;
}

header #links {
   display: flex;
   flex-direction: column;
   justify-content: left;
   text-align: left;
   align-items: left;

   font-size: 12px;
 }

 header #links :nth-child(1) {
    margin-bottom: 5px;
 }

header #logo {
    max-height: 96px;
}

header #social-media-logos {
    display: flex;
    justify-content: right;
    align-items: center;
    width: 35%;
}

header #IG {
    max-height: 40px; 
}

header #etsy {
    max-height: 40px; 
    margin-left: 15px;
}

/* *** SUBHEADER SECTION *** */

.subheader {
    grid-area: subheader;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.subheader img{
    max-width: 225px;
}

#left-image {
    border-radius: 150px 5px 10px 5px;
}

#middle-image {
    border-radius: 5px 5px 10px 10px;
}

#right-image {
    border-radius: 5px 150px 5px 10px;
}

/* *** HERO SECTION *** */

section {
    grid-area: hero;
    text-align: center;
    margin-top: 50px;
 }

 /* *** MAIN SECTION *** */

 /* * DESCRIPTION * */

 .main-area {
    grid-area: main;
 }

.description {
    display: flex;
    justify-content: space-between;
    margin: 50px 0;
 }

.german-text,
.english-text {
    flex-direction: column;
    width: 33%;
    padding: 0 0px 20px 0px;
}

.german-text h3,
.english-text h3 {
    font-size: 40px;
    position: relative;
    right: 20px;
    padding: 0;
    text-align: left;
}

.description img {
    align-self: center;
    min-width: 375px;
    min-height: 375px;
    width: 34%;
    height: 34%;
    margin: 0 45px 0 40px;
}

/* * GENERAL INFORMATION* */

.information {
    grid-area: main;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#general-information {
    text-align: center;
}

.printer {
    align-self: flex-start;
}

.cleaning {
    align-self: flex-end;
}

.postprocessing {
    align-self: flex-start;
}

.curing {
    align-self: flex-end;
}

.finished {
    align-self: flex-start;
}

.shipping {
    align-self: flex-end;
}

.further-information {
    margin-bottom: 50px;
}

/* *** FOOTER *** */

footer {
    display: flex;
    flex-direction: column;
    grid-area: footer;
    background-color: #e99e48;
    text-align: center;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: auto;
}

.footer-information {
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 0;
    padding-bottom: 0;
}

footer .contact {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
    margin: 20px 20px 0px 20px;
}

#portrait-footer {
    max-width: 150px;
    border-radius: 90px 0px;
    margin-right: 15px;
}

#logo-footer {
    max-width: 150px;
    border-radius: 15px;
}

.copyright {
    margin: 20px 20px 0px 0px;
}

.credit {
    font-size: 12px;
    padding: 0;
    margin: 0;
    text-align: center;
    color: #F5F3EF;
}

.credit a {
    color: inherit;
}