* {
    /*GLOBAER RESET!!!*/
    margin: 0;
    padding: 0;

    font-family: "Roboto", sans-serif;
    color: #000000;
}

h1{
    font-size: 20px;
    text-transform: uppercase;
    font-weight: bold;
}

p{
    line-height: 1.2;
    font-size: 18px;
    font-weight: 300;
}

/*----  HEADER  -----*/

#header {
    position: fixed;
    background-color: rgb(255, 255, 255);
    padding: 0.5vw 2vw 0.5vw 2vw;
    /*Oben, Rechts, Unten, Links*/
    width: 100vw;
    display: flex;
    flex-direction: row;
}

#logoHeader {
    width: 25vw;
    height: 3vw;
    background-image: url('../Assets/Logo_KomendaDesign_Web.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-color: transparent;
    order: 1;
}

#spaceHeader {
    width: 68.8vw;
    height: 4vh;
    padding-top: 0.5vw;
    background-color: rgb(255, 255, 255);
    align-self: left;
    order: 2;
}

.menuItems {
    visibility: hidden;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    height: 4.5vh;
    padding-right: 1vw;
}

.menuItem {
    margin-left: 4vw;
    text-decoration: none;
    font-weight: bold;
}

.row {
    display: flex;
    justify-content: center;
    align-items: center;
    order: 3;
}

.hamburg {
    display: block;
    background: #ffffff;
    width: 2vw;
    height: 1vw;
    align-items: center;
    margin-left: auto;
    margin-right: 0;
}

.line {
    position: absolute;
    /*left: 10px;*/
    height: 3px;
    width: 1.5vw;
    background: #000000;
    border-radius: 4px;
    display: block;
    transition: 0.5s;
    transform-origin: center;
    margin-top: 0.7vw;
}

.line:nth-child(1) {
    top: 12px;
}

.line:nth-child(2) {
    top: 24px;
}

.line:nth-child(3) {
    top: 36px;
}

.hamburg.checked .line:nth-child(1) {
    transform: translateY(12px) rotate(-45deg);
}

.hamburg.checked .line:nth-child(2) {
    opacity: 0;
}

.hamburg.checked .line:nth-child(3) {
    transform: translateY(-12px) rotate(45deg);
}


/*----  BODY  -----*/

.containerHome {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 93vh 15vh 8vh 60vh;
    gap: 2vw;
    padding-top: 4vw;
    /*Höhe des Headers*/
    padding-left: 2vw;
    padding-right: 2vw;

}

.bildTest {
    background-color: blue;
    grid-column-start: 1;
    grid-column-end: 5;
    grid-row-start: 1;
    grid-row-end: 2;
}

#test2 {
    background-color: chocolate;
    grid-column-start: 3;
    grid-column-end: 4;
}

.textTest{
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 2;
    grid-row-end: 3;

    

}

#testButton{
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 3;
    grid-row-end: 4;

    width: 22.5vw;
    height: 5vh;
    background-color: black;
    color: white;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    padding-top: 3vh;
    padding-bottom: 0;
    transition: 0.3s;
}

#testButton:hover{
    background-color: rgb(189, 42, 42);
}

.bildTest2 {
    background-color: rgb(0, 255, 76);
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 4;
    grid-row-end: 5;
    
}


/*----  FOOTER  -----*/

#footer {
    padding: 1vw 2vw 1vw 2vw;
    background-color: rgb(255, 255, 255);
    height: 30vh;
    text-align: center;
    display: flex;
    flex-direction: row;
}

#logoFooter {
    width: 75vw;
    height: 30vh;
    background-image: url('../Assets/Logo_KomendaDesign_Web.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-color: transparent;
    margin-right: 8vw;
    align-self: left;
    order: 1;
}

#textFooter {
    order: 2;
    width: 25vw;
    height: 30vh;
    display:flex;
    flex-direction: column;
    justify-content: space-between;
    
}

.footerItem {
    text-decoration: none;
    font-weight: bold;
    color: #7a7a7a;
    transition: 0.3s;
}

.footerItem:hover {
    color: #000000;
}

#footerItem {
    margin-left: auto;
    text-decoration: none;
    color: #7a7a7a;
    font-size: small;
}

#copyrightFooter{
      
  transform: rotate(-180deg);
    order: 3;
    height: 30vh;
    writing-mode: vertical-rl;
    text-orientation: sideways-right;
    font-weight: 400;
}