* {
    box-sizing: border-box;
}

@font-face{
    font-family: normal;
    src: url(/fonts/Nunito_Sans/static/NunitoSans_10pt-Regular.ttf);
}

@font-face{
    font-family: bold;
    src: url(/fonts/Nunito_Sans/static/NunitoSans_10pt-SemiBold.ttf);
}


html{
    scroll-behavior: smooth;
    font-size: 62.5%;
}

body, h1, h2, h3, h4, p, ul, li {
    margin: 0;
    padding: 0;
}

body{
    font-family: normal, sans-serif;
    font-size: 2rem;
    color: #de7800;
}
header,footer{                   /* border so in der höhe verändern, dass sie nach unten immer den viewport ausfüllen*/
    height: 75px;
    max-width: calc(100% - 150px);
    margin-inline: auto;
    border-left: 4px solid #de7800;
    border-right: 4px solid #de7800;
}

nav{
    padding-top: 1.1vw;
}

nav h1{
    font-size: 2vw;
    font-weight: normal;
}

nav a {
    text-decoration: none;
    color: #de7800;
}

main{
    flex-grow: 1;
    margin-inline: auto;
    border-top: 4px solid #de7800;
    border-bottom: 4px solid #de7800;
}


nav{
    text-align: center;
}

summary{
    font-size: 3rem;
    padding-bottom: 1.5rem;
}

details{                    /* warum bleibt hier der footer unten, wenn das detail geschlossen ist?*/
    max-width: calc(100% - 150px);
    margin-inline: auto;
    border-left: 4px solid #de7800;
    border-right: 4px solid #de7800;
    padding-left: 2rem;
    padding-top: 1.5rem;
}

.diy-details{
    border-bottom: 4px solid #de7800; 
}

.partypizzacutter-details{
    border-bottom: 4px solid #de7800; 
}

.modelling-details{
    border-bottom: 4px solid #de7800; 
}

.diy-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 4rem;
    padding-top: 2rem;
    padding-bottom: 4rem;
    padding-right: 4rem;
    padding-left: 2rem;
}

.diy-column1{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 4rem;
}

.diy-column1 img{
    width: 40%;
    height: auto;
}

.diy-column1 p{
    width: 35%;
    align-self: last baseline;
}

.diy-column2{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 4rem;
}

.diy-column2 img{
    width: 40%;
    height: auto;
}


/*.column3-teilung {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    background-color: blue;
    padding-right: 2.3rem;
}*/


.column1, .column2, .column3 {
    margin: 0 10px; 
}

ul{
    list-style: none;
}

a{
    color: #de7800;
    text-decoration: none;
}

footer{
    text-align: right;
    font-size: small;
}

footer ul{
    list-style: none;
    padding:1rem;
}

footer li{
    display: inline-block;
    
}