* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: black;
    color: white;
    font-family: 'Roboto', sans-serif;

}

.flexbox-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 0px;
    column-gap: 10px;
    width: 100%;
    height: 500vh;
    border: 1px;
    margin: 0px;
    column-gap: 0px;
    align-items: center;
    background-color: black;
}




.box {

    width: 150vh;
    height: 35vh;
    border: 10vh;
    margin: 1vh;
    background-color: rgb(5, 2, 15);
    flex-direction: row;

}




.box img {
    height: 35vh;
    width: 35vh;
    float: left;
    margin-left: 1px;
    margin-right: 20px;
}


.box img:hover {
    transform: scale(1.2);
    z-index: auto;
    transition-duration: 1s;


}


.Text {
    color: whitesmoke;
    font-size: 15px;
}

/* Text for Meny*/

.flexbox-container p{
    color:rgba(255, 255, 255, 0.771);
    font-size: 15px;
}

.flexbox-container h6{
    color:rgba(255, 255, 255, 0.771);
    font-size: 15px;
}

.flexbox-container h7{
    color:rgba(255, 255, 255, 0.771);
    font-size: 20px;
}