:root{
    --kolor-tla-glowny:#3a3a3a;
    --kolor-tla-drugi:#f5deb3;
    --kolor-czcionki-naglowek:#f5deb3;
    --kolor-czcionki-naglowek-drugi:rgb(0, 0, 0);
    --szary-bardzo-ciemny:#303030;
    --szary-ciemny:#3a3a3a;
    --szary-sredni:#4e4e4e;
    --szary-jasny:#626262;
    --czcionka:"Didact Gothic", sans-serif;;
    --czcionka-naglowek:"Poiret One", sans-serif;
}


body {
    /* background-color: var(--kolor-tla-glowny); */

    background-image: url("data:image/svg+xml,<svg id='patternId' width='100%' height='100%' xmlns='http://www.w3.org/2000/svg'><defs><pattern id='a' patternUnits='userSpaceOnUse' width='25' height='25' patternTransform='scale(3) rotate(0)'><rect x='0' y='0' width='100%' height='100%' fill='%233a3a3aff'/><path d='M9.19 0v3.93A9.187 9.187 0 003.93 9.19H0m0 6.618h3.93a9.188 9.188 0 005.26 5.26V25m6.619 0v-3.93a9.188 9.188 0 005.261-5.261H25m0-6.618h-3.93A9.188 9.188 0 0015.81 3.93V0' stroke-linecap='square' stroke-width='0.5' stroke='%234e4e4eff' fill='none'/></pattern></defs><rect width='800%' height='800%' transform='translate(-150,-99)' fill='url(%23a)'/></svg>");

    font-family: var(--czcionka);
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100vw;
    width: 100%;
    overflow-x: hidden;
}

.main{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-wrap: wrap;
    max-width: 100%;
    width: 100%;
}

header {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--szary-bardzo-ciemny);
    padding: 20px 0;
    max-width: 100vw;
    min-width: 100vw;
}

.header-navbar{
    display: grid;
    grid-template-columns: repeat(12,1fr) ;
    font-family: var(--czcionka);
    font-weight: bold;
    font-style: normal;
    width: 90%;
}

.header-section-logo{
    grid-column: 1/3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-logo {
    max-height: 8em;
    height: 100%;
}
.header-logo img{
    height: 100%;
    width: auto;
    transform: scale(1.2);
    transition: all 0.7s ease;
}
.header-logo img:hover{
    height: 100%;
    width: auto;
    transform: scale(1.7);
    transition: all 0.7s ease;
}

.header-section-socials{
    grid-column: 3/6;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
.header-section-socials div{
    margin-top: 0.5em;
    transform: scale(1.5);
    transition: all 0.7s ease;
}


.header-section-socials div:hover{
    transform: scale(2);
    transition: all 0.7s ease;

}

.header-section-function{
    grid-column: 6/11;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.header-section-user{
    
    grid-column: 11;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.header-section-languages{
    grid-column: 12;
    display: flex;
    justify-content: center;
    align-items: center;
}
.languages-container{
    /* max-width: 3em;
    width: 100%;
    margin: 0 1em 0 1em; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 0.3em solid var(--kolor-czcionki-naglowek);
    border-radius: 5%;
}


.languages-container .language-pl{
    color: var(--kolor-czcionki-naglowek);
    height: 2.7em;
    width: 2.7em;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--szary-bardzo-ciemny);

    cursor: pointer;
}

.languages-container .language-eng{
    color: var(--kolor-czcionki-naglowek);
    height: 2.7em;
    width: 2.7em;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--szary-bardzo-ciemny);
    cursor: pointer;

    /* background-color: var(--kolor-czcionki-naglowek); */
}

.header-item{

    height: 1em;
    padding: 1em;
    border-radius: 10%;
    text-align: center;
}


.header-link{
    text-wrap: nowrap;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--kolor-czcionki-naglowek);
    text-align: center;
    margin-right: 1em;;
    font-size: 1.1em;
    font-weight: normal;
    padding: 0.8em;
    border: solid 1px var(--kolor-czcionki-naglowek);
    border-radius: 5%;
    transition: all 0.7s ease;
   
}

.header-link:hover{
    padding: 0.8em;
    border: solid 3px var(--kolor-czcionki-naglowek);
    border-radius: 5%;
    transition: 0.7s ease;
    font-weight: bold;
    /* plywajace */
    font-size:1.3em;
    /* statyczne */
    /* transform: scale(1.3); */
    
}




.header-user{
    margin: 0 1em 0 1em;
    padding:1em;
    background-color: var(--kolor-tla-drugi);
    border-radius: 5%;
    text-decoration: none;
    text-transform: uppercase;
    color: black;
    cursor: pointer;
    transition: 0.7s ease;
    text-wrap: nowrap;
}
.header-user:hover,.header-user-logout:hover{
   background-color: var(--szary-bardzo-ciemny);
   color: var(--kolor-czcionki-naglowek);
   transition: 0.7s;
   font-weight: bold;
}



.header-user-logout{
    text-align: center;
    font-size: 1em;
    padding:1em;
    border-radius: 5%;
    text-transform: uppercase;
    color: black;
    background-color: var(--kolor-tla-drugi);
    text-decoration: none;
    cursor: pointer;
}


footer{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    width: 100%;
    background-color: var(--szary-bardzo-ciemny);
    color: var(--kolor-czcionki-naglowek);
    text-align: center;
    padding: 1em 0 1em 0;
}

footer .footer-image{
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 15vw;
}
footer .footer-image img{
    max-height: 5em;
    height: 100%;
    width: auto;
}


footer .footer-text{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    text-wrap: nowrap;
}

footer .footer-text a{
    font-size: 0.8em;
    color: var(--kolor-czcionki-naglowek);
    text-decoration: none;
}

.footer-text div{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

footer .footer-text p{
    margin: 0;
}


.homepage-content{
    display: flex;
    justify-self: center;
    align-items: center;
    flex-direction: column;
    /* max-width: 100vh; */
    width: 90%;
    /* justify-self: center; */
}
.homepage-content img{
    border-radius: 15px;
}

.section-main{
    margin: 0 0 0 0;
    display: flex;
    justify-items: center;
    align-items: center;

}

.section-main-content{
    max-width: 80vw;
    margin-top: 3em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;

}

.section-main-image{
    max-width: 47%;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;

}

.section-main-image-img{
 
    max-width: 52vh;
    max-height: 65vh;
    border: solid 0.3em var(--kolor-czcionki-naglowek);;
}

.section-main-body{

    max-width: 45%;
    width: 100%;
    /* padding: 0 2em 0 2em; */
    color: var(--kolor-czcionki-naglowek);
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center;
    font-family: var(--czcionka);
    font-size: 1.35em;
    
}

.section-main-body div{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.section-main-body div h1{
    font-size: 3em;
    color: var(--kolor-czcionki-naglowek);
    text-align: center;
    text-wrap: nowrap;
}
.section-main-body div img{
    max-height: 5em;
    height: 100%;
    width: auto;
}
.section-bolded-text{
    font-weight: bold;
    color: var(--kolor-czcionki-naglowek);

    font-size: 1.1em;
}


.section-text-center{
    max-width: 78%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;

}
.section-text-center p{
    color: var(--kolor-czcionki-naglowek);
    font-size: 1.3em;
    font-weight: 500;
}


.section-divider{
    margin: 3em 0 3em 0;
    color: var(--kolor-czcionki-naglowek);
    font-size: 1.3em;
    font-weight: 600;
    font-family: var(--czcionka-naglowek);
    font-style: italic  ;
    text-transform: uppercase;
    opacity: 0.8;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.section-divider .content{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    max-width: auto;
    width: 100%;
    height: auto;
    text-wrap: nowrap;
}
.section-divider .divider-container{
    width: 100%;
}

.section-divider .divider-container .divider{
    opacity: 0.3;
    border-top: 1px solid var(--kolor-czcionki-naglowek);
    border-bottom: 0;
    border-right: 0;
    border-left: 0;
    width: 25vw;
}

.section-divider .content img{
    max-height: 2em;
    height: 100%;
    width: auto;
}


.section-body-right{
    display: flex;
    align-items: center;
    justify-content: space-around;
    /* grid-template-columns: repeat(2,1fr); */
    margin: 0 0 1em 0;
    max-width: 70vw;
    width: 100%;
}

.section-body-left{
    display: flex;
    align-items: center;
    justify-content: space-around;
    max-width: 70vw;
    width: 100%;
    /* grid-template-columns: repeat(2,1fr); */
    margin: 0 0 1em 0;
}



.section-body-left .section-image-container{
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: left;
    align-items: center;
}
.section-body-right .section-image-container{
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: right;
    align-items: center;
}

.section-image{
    max-height: 50vh;
    max-width: 50vh;
    height: auto;
    border: solid 0.3em var(--kolor-czcionki-naglowek);
}

.section-content{
    font-size: 1.20em;
    display:flex;
    max-width: 50vw;
    width: 100%;
    flex-direction: column;
    justify-content: flex-start; 
    align-items: stretch; 
    color: var(--kolor-czcionki-naglowek);
    padding: 2em;
   
}

.section-title{
    font-family: var(--czcionka-naglowek);
    
    font-style: italic;
    opacity: 0.9;
    font-size: 1.5em;
    color: var(--kolor-czcionki-naglowek);
    font-weight: 700;
    text-transform: capitalize;
}
.section-subtitle{
    font-size: 1.2em;
    font-style: italic;
    opacity: 0.8;
}
.section-description{
    font-size: 1em;
    text-wrap: wrap;;
    width: 100%;
}

.beer-left{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    background-color: var(--szary-ciemny);
}

.beer-right{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: var(--szary-sredni); 
}
.beers-content{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-self: center;
    align-items: center;

}

.beers-header{
    height: 2em;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--szary-sredni);
    text-align: center;
    text-transform: uppercase;
    color: var(--kolor-czcionki-naglowek);
    font-size: 3em;

}

.beer-item-right{
    width: 100%;
    max-width: 80%;
    padding: 3em 0 3em 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}


.beer-item-left{
    width: 100%;
    max-width: 80%;
    padding: 3em 0 3em 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;

}

.beer-image-container-left{
    width: 60%;
    height: 100%;
    display: flex;
    justify-content: center;  
    align-items: center;
}

.beer-image-container-right{
    width: 60%;
    height: 100%;
    display: flex;
    justify-content: center;  
    align-items: center;
}

.beer-image{
    max-width: 100%;
    max-height: 60vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border: solid 0.3em var(--kolor-czcionki-naglowek);
    border-radius: 10px;
    display: block;
    margin: auto;
}

.beer-content-container-right{
    max-width: 60%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--kolor-czcionki-naglowek);
    font-family: var(--czcionka);
}

.beer-content-container-left{
    /* display: grid;
    grid-template-columns: 8fr 2fr; */
    width: 100%;
    max-width: 60%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--kolor-czcionki-naglowek);
    font-family: var(--czcionka);

}

.beer-arrow{
    margin: 0 3em 0 3em;
    color: var(--kolor-czcionki-naglowek);
    display: flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
}

.beer-item-left .beer-arrow{
    transform: rotate(0deg);
}
.beer-item-right .beer-arrow{
    transform: rotate(180deg);
}


.beer-content-left{
    padding: 3em 0 3em 0em;
    display: flex;
    flex-direction: column;
    max-width: 90%;
    width: 100%;
}

.beer-content-right{
    padding: 3em 0 3em 0em;
    display: flex;
    flex-direction: column;
    max-width: 90%;
    width: 100%;
}

.beer-category{
    font-style: italic;
    opacity: 0.7;
    font-size: 1.4em;
}

.beer-name{
    font-size: 1.6em;
    text-transform: uppercase;
}

.beer-alcohol{
    font-size: 1.3em;
}

.beer-flavors{
    font-size: 1.3em;;
}


.beer-value{
    font-weight: 100;
    font-style: italic;
}

.beer-description-first-letter{
    text-transform: uppercase;
    font-size: 1.3em;
}

.beer-description{
    font-size:1.1em ;
}

.section-images{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    
}

.section-images-image{
    max-height: 40vh;
    max-width: auto;
    margin: 1em 1em 1em 1em;
    border: var(--kolor-czcionki-naglowek) 0.3em solid;

}

.contactpage-content{
    width: 100%;
    justify-self: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* .contactpage-header{
    height: 2em;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--szary-sredni);
    text-align: center;
    text-transform: uppercase;
    color: var(--kolor-czcionki-naglowek);
    font-size: 3em;

} */

.contactpage-contactform {
max-width: 400px;
width: 100%;
padding: 30px;
background-color: var(--kolor-tla-glowny);
}

.contactpage-contactform label {
font-weight: 600;
margin-bottom: 0px;
display: flex;
color: var(--kolor-czcionki-naglowek);
}

.contactpage-contactform input,
.contactpage-contactform textarea {
width: 93%;
padding: 12px;
margin-bottom: 16px;
border: 2px solid var(--kolor-czcionki-naglowek);
border-radius: 8px;
font-size: 15px;
background-color: white;
font-family: var(--czcionka);
}

.contactpage-contactform input:focus,
.contactpage-contactform textarea:focus {
border-color: lightgreen;
outline: none;
}

.contactpage-contactform textarea {
resize: vertical;
min-height: 15em;
font-family: var(--czcionka);
}

.contactpage-contactform button {
background-color: var(--kolor-czcionki-naglowek);
color: black;
border: none;
padding: 14px 24px;
font-size: 16px;
border-radius: 8px;
cursor: pointer;
font-weight: 600;
text-transform: uppercase;
}

.contactpage-contactform button:hover {
background-color: lightgreen;
}
.contactpage-contactform button:disabled {
background-color: lightgreen;
}

.feedback-info{
    text-transform: none;
    color:lightcoral;
    font-size: 0.9em;
    text-align: left;
    margin-bottom: 8px;
}

.contactpage-info{
    color: var(--kolor-czcionki-naglowek);
    font-size: 1.2em;
    text-align: center;
    margin-bottom: 8px;
}

.loginpage-content{
    flex: 1;
    width: 100%;
    justify-self: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.loginpage-header{
    height: 2em;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--szary-sredni);
    text-align: center;
    text-transform: uppercase;
    color: var(--kolor-czcionki-naglowek);
    font-size: 3em;
}

.loginpage-info{
    color: var(--kolor-czcionki-naglowek);
    font-size: 1.2em;
    text-align: center;
    margin-bottom: 8px;
}


.loginpage-loginform {
    max-width: 400px;
    width: 100%;
    padding: 30px;
    background-color: var(--kolor-tla-glowny);
}
.loginpage-loginform label {
    font-weight: 600;
    margin-bottom: 0px;
    display: flex;
    color: var(--kolor-czcionki-naglowek);
}
.loginpage-loginform input{
    width: 94%;
    padding: 12px;
    margin-bottom: 16px;
    border: 2px solid black;
    border-radius: 8px;
    font-size: 15px;
    background-color: white;   
}

.loginpage-loginform input:focus {
    border-color: lightgreen;
    outline: none;
}
.loginpage-loginform button {
    background-color: var(--kolor-czcionki-naglowek);
    color: black;
    border: none;
    padding: 14px 24px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
}
.loginpage-loginform button:hover {
    background-color: lightgreen;
}
.loginpage-loginform button:disabled {
    background-color: lightgreen;
}

.registerpage-content{
    flex: 1;
    width: 100%;
    justify-self: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.registerpage-header{
    height: 2em;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--szary-sredni);
    text-align: center;
    text-transform: uppercase;
    color: var(--kolor-czcionki-naglowek);
    font-size: 3em;
}
.registerpage-info{
    color: var(--kolor-czcionki-naglowek);
    font-size: 1.2em;
    text-align: center;
    margin-bottom: 8px;
}

.registerpage-registerform {
max-width: 400px;
width: 100%;
padding: 30px;
background-color: var(--kolor-tla-glowny);
}

.registerpage-registerform label {
font-weight: 600;
margin-bottom: 0px;
display: flex;
color: var(--kolor-czcionki-naglowek);
}
.registerpage-registerform input{
    width: 94%;
    padding: 12px;
    margin-bottom: 16px;
    border: 2px solid black;
    border-radius: 8px;
    font-size: 15px;
    background-color: white;       
}
.registerpage-registerform input:focus {
border-color: lightgreen;
outline: none;
}
.registerpage-registerform button {
background-color: var(--kolor-czcionki-naglowek);
color: black;
border: none;
padding: 14px 24px;
font-size: 16px;
border-radius: 8px;
cursor: pointer;
font-weight: 600;
text-transform: uppercase;
}
.registerpage-registerform button:hover {
background-color: lightgreen;
}
.registerpage-registerform button:disabled {
background-color: lightgreen;
}

.postpage-content{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-self: center;
    align-items: center;
}


.post-content{
    max-width: 80%;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-content: flex-start;
    flex-wrap: wrap;
    /* display: grid;
    grid-template-columns: 1fr 1fr ;
    grid-template-rows: 1fr 2fr; */
    width: 100%;
    padding: 2em 1em 2em 1em;
    margin-bottom: 2em;
    border: 0.3em solid var(--kolor-czcionki-naglowek);
    background-color: var(--szary-jasny);
    border-radius: 15px;
}

.post-text{
    max-width: 60%;
    width: 100%;
    color:var(--kolor-czcionki-naglowek);
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: flex-start ;
    
}

.post-title{
    font: 1.3em sans-serif;
    padding:1em 0 0.5em 0;
}

.post-category{
    font: 1.1em sans-serif;
    padding: 0 0 1em 0;
}

.post-date{
    font: 1em sans-serif;
    font-style: italic;
    opacity: 0.8;
}

.post-image-container{
    max-width: 40%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* background-color: yellow; */

    height: 100%;
    /* grid-area: 1/2/3/3; */
    
}
.post-image-container img{
    margin: 1em;
    max-width: 95%;
    width: 100%;
    height: auto;
    border: solid 0.2em var(--kolor-czcionki-naglowek);
    border-radius: 15px;
}

.post-description-container{
    display: flex;
    color: var(--kolor-czcionki-naglowek);
    font-size: 1em;
    
}

.post-comments-section{
    max-width: 100%;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.post-comments{
    max-width: 60%;
    width: 100%;
    margin-top: 1em;
    padding: 0 1em 0 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.post-comments-header{
    margin-top: 8px;
    width: 100%;
    display: flex;
    text-align: center;
    color: var(--kolor-czcionki-naglowek);
    font-size: 1.2em;
}
.comment-header{
    margin-top: 8px;
    width: 100%;
    display: flex;
    text-align: center;
    color: var(--kolor-czcionki-naglowek);
    font-size: 1.2em;
    font-weight: bold;
}

.comment-content{
    width: 100%;
    color: var(--kolor-czcionki-naglowek);
}

.post-comment-form-container{
    max-height: 100%;
    height: 100%;
    max-width: 38%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.comment-unauthrized{
    color: var(--kolor-czcionki-naglowek);
    font-size: 1.2em;
    text-align: left;
    padding: 1em;
}

.post-comment-form-addform{
    max-width: 400px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: flex-start;
    color: var(--kolor-czcionki-naglowek);
}

.post-comment-form-addform label {
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    color: var(--kolor-czcionki-naglowek);
}

.post-comment-username{
    font-size: 1.2em;
    color: var(--kolor-czcionki-naglowek);
    text-align: left;
    margin-bottom: 8px;
}

.post-comment-form-addform input,
.post-comment-form-addform textarea{
    width: 93%;
    padding: 12px;
    margin-bottom: 16px;
    border: 2px solid black;
    border-radius: 8px;
    font-size: 15px;
    background-color: white;
    font-family: var(--czcionka);
}

.post-comment-form-addform textarea:focus{
    border: 2px solid lightgreen;
    outline: none;
}

.post-comment-form-addform button{
    background-color: var(--kolor-czcionki-naglowek);
    color: black;
    border: none;
    padding: 14px 24px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
}
.post-comment-form-addform button:hover{
    background-color: lightgreen;
}

.panel-function{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-self: center;
}

.panel-function-header{
    padding: 1em;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    color: var(--kolor-czcionki-naglowek);
    font-weight: bold;
    font-size: 1.5em;
}

.panel-function-functions{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.button-function{
    padding: 1em;
    background-color: var(--kolor-czcionki-naglowek);
    border: 3px solid black;
    color: black;
    text-transform: uppercase;
    font-weight: bold;
}

.button-function:hover{
    background-color: lightgreen;
}

.panel-forms{
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
}
.addBeerForm{
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 400px;
    width: 100%;
    background-color: var(--kolor-tla-glowny);
}

.addBeerForm label{
    font-weight: 600;
    margin-bottom: 0px;
    display: flex;
    color: var(--kolor-czcionki-naglowek); 
}

.addBeerForm input,.addBeerForm textarea{
    width: 93%;
    padding: 12px;
    margin-bottom: 16px;
    border: 2px solid black;
    border-radius: 8px;
    font-size: 15px;
    background-color: white;
    font-family: var(--czcionka);
}
.addBeerForm input:focus,.addBeerForm textarea:focus{
    border-color: green;
    outline: none;
}

.addBeerForm textarea {
    resize: vertical;
    min-height: 15em;
    font-family: var(--czcionka);
}

.addBeerForm button {
    background-color: var(--kolor-czcionki-naglowek);
    color: black;
    border: none;
    padding: 14px 24px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
}

.addBeerForm  button:hover {
    background-color: lightgreen;
}

.allBeers-panel{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.allBeers-form{
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 0 0 1em 0;
    background-color: var(--kolor-tla-glowny);
}

.messages-panel{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}
.message-container{
    padding: 1em;
    background-color: var(--kolor-tla-drugi);
    color: var(--szary-ciemny);
    border-radius: 5%;
    border: 2px black solid;
    min-width: 250px;
    max-width: 535px;
    height: auto;
    text-wrap: wrap;
}

.message-message{
    text-wrap: wrap;
    width: 100%;
}

.reply-panel{
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 600px;
    width: auto;
    background-color: var(--kolor-tla-drugi);
    border-radius: 5%;
}

.reply-panel-container{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: var(--szary-ciemny);
    padding: 1em;
}

.reply-panel-form{
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.reply-panel-form input,.reply-panel-form textarea{
    width: 100%;
    font-family: var(--czcionka);

}

.reply-panel-form textarea{
    min-height: 15em;
    font-family: var(--czcionka);
}

.mymessages-container{

    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
}

.mymessages-message{
    color: var(--szary-ciemny);
    max-width: 300px;
    min-width: 200px;
    border: 2px solid black;
    padding: 1em;
    background-color: var(--kolor-tla-drugi);
    
    border-radius: 5%;
}

.addPost-panel{
    align-items: center;
    justify-self: center;
    display: flex;
}


.addPost-form{
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 600px;
    width: 100%;
    background-color: var(--kolor-tla-glowny);
}

.addPost-form label{
    font-weight: 600;
    margin-bottom: 0px;
    display: flex;
    color: var(--kolor-czcionki-naglowek); 
}

.addPost-form input,.addPost-form textarea{
    width: 93%;
    padding: 12px;
    margin-bottom: 16px;
    border: 2px solid black;
    border-radius: 8px;
    font-size: 15px;
    background-color: white;
    font-family: var(--czcionka);
}

.addPost-form input:focus,.addPost-form textarea:focus{
    border-color: lightgreen;
    outline: none;
}

.addPost-form textarea {
    resize: vertical;
    min-height: 15em;
    font-family: var(--czcionka);
}

.addPost-form button {
    background-color: var(--kolor-czcionki-naglowek);
    color: black;
    border: none;
    padding: 14px 24px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;

}

.addPost-form  button:hover {
    background-color: lightgreen;
}


.allPosts-panel{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.allPosts-form{
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 0 0 1em 0;
    background-color: var(--kolor-tla-glowny);

}
.file-filename{
    width: 50%;
    text-wrap: wrap;
    
}
.resetpasswordpage-content{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
}
.resetpasswordpage-content form{
    max-width: 400px;
    width: 100%;
    padding: 0 30px;
    background-color: var(--kolor-tla-glowny);
}


.resetpasswordpage-content form label {
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    color: var(--kolor-czcionki-naglowek);
}


.resetpasswordpage-content form input{
    width: 94%;
    padding: 12px;
    margin-bottom: 16px;
    border: 2px solid black;
    border-radius: 8px;
    font-size: 15px;
    background-color: white;    
}

.resetpasswordpage-content form input:focus {
    border-color: lightgreen;
    outline: none;
}

.resetpasswordpage-content form .reset-buttons{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.resetpasswordpage-content form button {
    background-color: var(--kolor-czcionki-naglowek);
    color: black;
    border: none;
    padding: 14px 24px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
}

.resetpasswordpage-content form button:hover {
background-color: lightgreen;
}
.resetpasswordpage-content form button:disabled {
background-color: lightgreen;
}

.resetpasswordpage footer{
    position: fixed;
    bottom: 0;
}

.loginpage footer{
    position: fixed;
    bottom: 0;
}

.notFoundMain{
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--kolor-czcionki-naglowek);
    font-size: 4em;
    height: 50vh;
}
@media (max-width:1600px){
    .header-logo img{
        max-height: 8em !important;
        height: 100%;
        width: auto;
    }
    header{
        display: flex;
        flex-direction: row;
        justify-self: center;
        align-items: center;
        justify-content: center;
        /* align-items: center;
        justify-content: center;
        justify-self: center; */
        /* max-width: 98vw;
        width: 100%; */

        /* padding: 0 0 1em 0; */

    }

    .header-navbar{
        max-width: 100%;
        width: 100%;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-self: center;
        align-items: center;
        justify-content: space-evenly;
        
    }

    .header-section-socials{
        display: flex;
        min-width: 15vh;
        flex-direction: row;
        align-items: center;
        justify-content: space-evenly;

    }
    .header-section-function{
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-evenly;
    }
    .header-section-user{
        display: flex;
        flex-direction: row;
        min-width: 30vh;
        align-items: center;
        justify-content: center;
    }
    .header-section-user a{
        margin:  0.5em;
    }
    .header-section-function a{

        margin: 0.5em;
    }

    .header-section-function a:hover{
        font-size: 1.7em;
    }
}

@media (max-width:1250px){
 
    .header-logo img{
        max-height: 8em !important;
        height: 100%;
        width: auto;
    }
    .resetpasswordpage footer{
        position: relative;
        
    }
    .loginpage footer{
        position: relative;
    }
    .section-main-body{
        max-width: 87vh;
        width: 100%;
        margin-bottom: 2em;
    }
    .allBeers-form{
        flex-wrap: wrap;
    }
    .allPosts-form{
        flex-wrap: wrap;
    }
    .section-body-left .section-image-container{
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.section-body-right .section-image-container{
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

}

@media (max-width: 1030px){
   
    .section-body-right{
        display: flex;
        flex-direction: column;
    }
    
    .section-body-left{
        display: flex;
        flex-direction: column-reverse;
    }
    
    .section-images{
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .post-content{
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .post-comments-section{
        max-width: 100%;
        width: 100%;
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: flex-start;
    }
    .post-text{
        max-width: 100%;
        width: 100%;
        color:var(--kolor-czcionki-naglowek);
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: flex-start ;
    }
    .post-comments{
        max-width: 100%;
        width: 100%;
        margin-top: 1em;
        padding: 0 1em 0 0;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }
    .post-comment-form-container{
        max-width:100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        width: 100%;
    }
    .post-image-container{
        max-width: 65%;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;    
        height: 100%;
    }


   
}

@media (max-width:1250px){
    .section-main-content{  
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
     } 

    .section-main-image{
        max-width: 90vw;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .section-main-image-img{
 
        width: 100%;
        height: auto;
        border: solid 0.3em var(--kolor-czcionki-naglowek);;
    }
}

@media (max-width:650px){
        .section-images{
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        
    }
    .section-image-container{
        height: 100%;
        width: 100%;
        display: flex;
        justify-content: left;
        align-items: center;
    }
     .section-main-content{  
        max-width: 87vh;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
     }
    .section-body-left{
        max-width: 87vh;
        width: 100%;
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
    }
    .section-body-right{
        max-width: 87vh;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .section-image{
        max-width: 80vw;
        /* max-height: 80vw; */
        width: auto;
        height: auto;
    }
    .section-images-image{
        height: 100%;
        width: 100%;
        max-width: 80vw;
        /* max-height: 80vw; */
        width: auto;
        height: auto;
        margin: 1em 0;
        border: var(--kolor-czcionki-naglowek) 0.3em solid;

    }
    .post-image-container{
        max-width: 95%;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
    }
    .section-main-body{
        max-width: 86vh;
        width: 100%;
        margin-bottom: 2em;
    }
    .section-main-body p{
        padding: 0 5px;
        text-align: center;
    }

    .section-main-body div{
        max-width: 60vh;
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }
    
    .section-main-body div h1{
        font-family: var(--czcionka-naglowek);
        font-size: 2em;
        color: var(--kolor-czcionki-naglowek);
        text-align: center;
        text-wrap: nowrap;
    }
    .section-main-body div img{
        max-height: 3.2em;
        height: 100%;
        width: auto;
    }
    .section-content{
    display:flex;
    max-width: 90vw;
    width: 100%;
    flex-direction: column;
    justify-content: flex-start; 
    align-items: stretch; 
    color: var(--kolor-czcionki-naglowek);
    padding: 1em;
   
}

}

@media (max-width:850px){

    .beer-item-left{
        flex-direction: column !important;
        align-items: center;
        justify-content: center;
    }
   .beer-arrow{
    transform: rotate(90deg) !important;
   }
   .beer-item-right{
    flex-direction: column-reverse !important;
    align-items: center;
    justify-content: center;
    }
    .beer-image-container-left{
        max-width: 5vh !important;
        height: 100%;
        width: 100%;
    }
    .beer-image{
        max-width: 50vw;
        height: 100%;
        width: auto;

    }
    .beer-image-container-right{
        max-width: 5vh !important;
        height: 100%;
        width: 100%;
    }
    .beer-content-container-left{
        /* display: grid;
        grid-template-columns: 8fr 2fr; */
        width: 100%;
        max-width: 100% !important;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--kolor-czcionki-naglowek);
        font-family: var(--czcionka);
    
    }
    .beer-content-container-right{
        /* display: grid;
        grid-template-columns: 8fr 2fr; */
        width: 100%;
        max-width: 100% !important;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--kolor-czcionki-naglowek);
        font-family: var(--czcionka);
    
    }
    .contactpage-contactform, .loginpage-loginform, .registerpage-registerform ,
    .post-comment-form-addform{
        max-width: 70vw;
        width: 100%;
        padding: 1em;
    }
    .addBeerForm{
        display: flex;
        flex-direction: column;
        justify-content: center;
        max-width: 70vw;
        width: 100%;
        background-color: var(--kolor-tla-glowny);
    }
    .mymessages-container{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .addPost-form{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-self: center;
        max-width: 70vw;
        width: 100%;
        background-color: var(--kolor-tla-glowny);
    }
    .messages-panel{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }
    .panel-function-header{
        padding: 1em 0 1em 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-transform: uppercase;
        color: var(--kolor-czcionki-naglowek);
        font-weight: bold;
        font-size: 1.5em;
        text-wrap: wrap;
        overflow-wrap: break-word;
    }
    .panel-function-header span{
        text-wrap: wrap;
        overflow-wrap: break-word;
    }
    .section-divider .divider-container .divider{
        letter-spacing: 10px;
        opacity: 0.3;
        border-top: 1px solid var(--kolor-czcionki-naglowek);
        border-bottom: 0;
        border-right: 0;
        border-left: 0;
        width: 17vw;
    }
    
    .section-divider .content img{
        max-height: 1.3em;
        height: 100%;
        width: auto;
    }
    .section-content{
        padding: 0 0 1em 0;
    }
    .section-body-left{
        padding: 0 0 2em 0;
    }
    .section-body-right{
        padding: 0 0 2em 0;

    }

}
