body, html{
    height: 100%;
}

body{
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: grey;
    color: #ffffff;
}


#guwny-main{
    display: flex;
    justify-content: space-between;
    align-items: center;

}


.hero-image{
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(cofee.jpg);

    height: 70%;

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.cafemuny{
    display: grid;
    grid-template-areas: 
    "caffe1 "
    "caffe2"
    "caffe3";
    grid-template-columns: 1fr, 1fr, 1fr;
    color: #000000;
    background-color: #000000;
    padding: 5px;
    display: flex;
    flex-direction: column;
}

.cafemuny div {
    background-color: #ffffff;
}

.cafemuny .coffe1{
    grid-area: "coffe1";
    text-align: center;
    margin-left: 200px;
    margin-top: 100px;
    margin-right: 200px;
    margin-bottom: 20px;
}

.cafemuny .coffe2{
    grid-area:"coffe2";
    text-align:center;
    margin-left: 200px;
    margin-right: 200px;
    margin-bottom: 20px;
}

.cafemuny .coffe3{
    grid-area:"coffe3";
    text-align:center;
    margin-left: 200px;
    margin-right: 200px;
    margin-bottom: 100px;
}

.hero-text{
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 5%;
    color:white;
    background-color: rgba(00, 255, 100, 0.4 );
}

.hamburger{
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span{
    background-color: #ffffff;
    width: 25px;
    height: 3px;
    margin: 2px;
}

#menu{
    display: none;
}

.nav-linki{
    background-color: grey;
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    position: absolute;
    width: 100vw;
    box-sizing: border-box;
    height: calc(100vh - 36px);
    left: -100vw;
    top: 40px;
    transition: 1000ms;
    flex-direction: column;
    align-items: center;
    z-index:3;
}


#menu:checked ~ .nav-linki{left: 0;}
#menu:checked ~ .hamburger {position: relative; justify-content: center; align-items: center;}
#menu:checked ~ .hamburger span{position: absolute; right: 0;}
#menu:checked ~ .hamburger span:first-child{display: none;}
#menu:checked ~ .hamburger span:nth-child(2){rotate:45deg;}
#menu:checked ~ .hamburger span:nth-child(3){rotate:-45deg;}


@media screen and (min-width: 768px) {
    .hamburger{
        display: none;
    }
    .nav-linki{
        height: auto;
        width: auto;
        position: static;
        flex-direction: row;
        background-color: transparent;
    }
}

@media screen and (max-width:589px){
    
}

.nav-linki li{
    margin: 10px;
}

.nav-linki li a{
    color: #ffffff;
    text-decoration-line: none;
        
}

#baton{
    background-color: black;
    color: #ffffff;
    border-radius: 90%;
    padding:10px;
}

.bout{
    text-align: center;
    margin-right:20% ;
    margin-left:20%;
}

#contactLoss{
    background-color:#000000;
}

#contactLost{
    display:flex;
    justify-content: space-around;
}