﻿Body {
    text-decoration: none;
    height: 100%;
    margin: 0px;
    background-color: grey;
}

html {
    height: 100%;
    margin: 0px;
}

.GridWrapper {
    display: grid;
    grid-template-columns: repeat(6, minmax(200px, 1fr)); /* flexible columns */
    grid-template-rows: repeat(7); /* flexible rows */
    width: 100%;
    min-height: 100%; /* at least full screen */
    box-sizing: border-box;
    gap: 10px; /* optional spacing between rows/columns */
}


.headline {
    background-color: black;
    height: 50%;
    grid-column: 1/4;
}




.buttons {
    display: flex;
    justify-content: space-around;
    align-items: center;
    grid-row: 2;
    grid-column: 1/7;
    font-size: 2vw;
    text-decoration: none;
    margin-bottom: 200px;

}

.Main-text1:hover {
    transform: scale(1.05);
}

.Main-text2:hover {
    transform: scale(1.05);
}

.Main-text3:hover {
    transform: scale(1.05);
}

.Main-text1 {
    background-color: white;
    width: 20vw;
    height: 15vh;
    display: flex;
    border: 2px white solid;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
    color: black;
    text-decoration: none;
}

.Main-text2 {
    background-color: white;
    width: 20vw;
    height: 15vh;
    display: flex;
    border: 2px white solid;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
    color: black;
    text-decoration: none;
}

.Main-text3 {
    background-color: white;
    width: 20vw;
    height: 15vh;
    display: flex;
    border: 2px white solid;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
    color: black;
    text-decoration: none;
}


.produkterdiv {
    background-color: darkslategrey;
    grid-row: 3;
    grid-column: 1/7;
        margin: 0px;
        padding-top: 3vh;
        padding-bottom: 3vh;
        height: 100%;
}

.produkertext {
    color: black;
    display: flex;
    justify-content: center;
    font-size: 30px;
    margin: 0;
}

.main-img {
    grid-row: 1 / 4;
    grid-column: 1 / 7;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    opacity: 0.5;
    z-index: -1;

}









.head {
   
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;
    height: 100px;
    background-color: darkgray;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.Login {
    text-decoration: inherit;
    color: black;
    font-size: 33px;
    margin-right: 5vw;
    transition: 0.2s;

   
}




.Login:hover {
    color: white;
}

.search{
    display: flex;
    margin-right: 10vw;
    padding: 5px;
    border-radius: 10px;
}






.realproduktiteldiv {
   
    display: grid;
    grid-template-columns: repeat(4, minmax(200px, 1fr)); /* flexible columns */
    grid-template-rows: repeat(2, minmax(150px, auto)); /* flexible rows */
    width: 100%;
    box-sizing: border-box;
    gap: 5vw; /* optional spacing between rows/columns */
    background-color: whitesmoke;
    height: 100%;
    grid-row: 4;
    grid-column: 1/7;
    padding: 20px;
}


.sak {
    text-decoration: inherit;
    background-color: dimgray;
    padding: 20px;
    color: black;
    transition: 0.5s;
}
.sak:hover{
    transform: scale(1.02);
}
.sak-in {
    text-decoration: none;
}
.visamer {
    font-size: 25px;
    padding-bottom: 2px;
    display: inline-block;
    grid-row: 6;
}
