body{
    margin:0;
     text-align: center;
    width: 100%;

    height: 100vh;
    box-sizing: border-box;
}

header{ 
    box-shadow: 0px 10px 15px rgb(226, 189, 141);
    margin-bottom: 20px;
    padding: 10px;
}

p{
    font-size:1.3em; 
    line-height: 30px;  
    max-width: 700px;
    margin: 20px auto;

}

.content{
    display:flex;
    align-items: center;
    margin: 0 auto;
    max-height: 700px;
    height:100%;
    max-width: 700px;
    width:100%
}

#main-content{
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-image: url("./pictures/bikes_together.jpg");
    background-repeat: no-repeat;
    background-position:center;
    width: 100%;
    max-width: 700px;
    max-height: 400px;
}



#details_content{
    margin: 3em auto;
    margin-bottom: 50px;
    flex-direction: column;
}



#location-content{
    background-image: url("./pictures/compas.jpg");
    background-repeat: no-repeat;
    background-position:center;
}

#nav{
    display: flex;
    list-style: none;
}
#nav li{
    margin: 1em;
    padding: 5px 10px;
}
li a{
    cursor: pointer;
    font-size: 18px;
    color:white;
    text-decoration: none;

}
li a:hover{
    font-weight: bold;
}

.names{
    padding-left: 30px;
    font-family: 'Scriptina', sans-serif;
    color:antiquewhite;
    font-size: 45px;
    margin: 0;
}

.center-content{
    display:block;
    padding-bottom: 30px;
}

.center-content p{
    margin: 0 auto;
}

.center-content p{
    margin-bottom: 20px;
}

#pic-zamek{
    max-width: 600px;
}

.round{
    border-radius: 50%;
}

.show-small{
    display: none;
}

.picture-size{
    max-width: 600px;
    width:100%;
    height: 400PX;
    object-fit: cover;
    border: none;
}

.bike{
    width: 100%;
    max-width: 600px;
}

.compas{
    max-width: 200px;
}

@media(max-width: 800px){
    header{
        display:flex;
        flex-direction: column;
    }
    #nav{
        flex-direction: column;
    }
    .show-small{
        display: block;
    }
    #main-content{
        display:none;
        background-image:none;
    }
}