body {
    overflow-x: hidden;
}

.logo {
    width: 70px;
    margin-bottom: -25px;
    transition-property: all;
    transition-duration: .3s;
}

.logo:hover {
    transform: scale(1.2);
}

.mainWrap {
    background-color: white;
    width: 100%;
    height: 100vh;
    overflow-x: hidden;
    overflow-y: hidden;
    display: flex;
    justify-content: center; 
    align-items: center;   
}

.mainOption, .mainOptionV {
    transition-property: all;
    transition-duration: .3s;
}

.mainOption img{
    width: 100%;
    border-radius: 15px 0px 0px 5px;
}

.mainOptionV img{
    width: 100%;
    border-radius: 0px 5px 0px 0px;
}

.mainOption {
    width: 350px;
    height: 550px;
    background-color: #ececec;

    border-radius: 15px 0px 0px 5px;
}

.mainOptionV {
    display: inline-block;
    width: 200px;
    height: 400px;
    background-color: #b5b8bb;
    border-radius: 0px 5px 15px 0px;
    margin: 20px;
    box-sizing: border-box;
}

.contOption {
    width: 400px;
    height: 400px;
    background-color: #ececec;
    padding: 10px;
    box-sizing: border-box;
    margin: 20px;
    border-radius: 5px;
    float: left;
}

.mainOptionV:hover, .mainOption:hover {
    transform: scale(1.1);
}


.contOptionPhoto {
    width: 100%;
}

.nhelp {
    font-size: 35px;
    margin-top: 100px;
    margin-left: 10px;
}

.nvol {
    margin-top: 20px;
    margin-left: 5px;
}

.nmain {
    font-size: 35px;
    margin-top: 30px;
    margin-left: 10px;
}

.thumbs img {
    width: 30px;
}

.userInfo {
    width: 70%;
    margin-left: 15%;
}

.userInfo img{
    display: inline;
}

.userInfo h4 {
    display: inline;
}

.infoBoxUser {
    border: solid rgb(97, 97, 97) 2px;
    border-radius: 5px;
    height: 50px;
    padding: 10px;
    margin: 10px;
    box-sizing: border-box;
    font-size: 18px;
}

.indexLogo {
    position: absolute;
    left: 50px;
    top: 50px;
    width: 100px;
}

#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    color: white;
    padding: 15px;
    text-align: center;
    z-index: 9999;
    display: none; /* domyślnie ukryty, pokażemy przez JS jeśli cookie nie istnieje */
}

#cookie-banner a {
    color: #ffd700;
    text-decoration: underline;
}

#cookie-banner button {
    margin-left: 15px;
    padding: 5px 15px;
    background-color: #ffd700;
    border: none;
    cursor: pointer;
    font-weight: bold;
}

#cookie-banner button:hover {
    background-color: #ffc700;
}


  @media (max-width: 768px) {

.mainWrap {
    background-color: white;
    display: block;
    overflow-y: auto;

}

.mainOption, 
.mainOptionV {
    display: block;
    width: 90%;
    margin-left: 5%;
    height: 550px;
    margin-top: 20px;
    border-radius: 15px 5px 15px 5px;
}
.logo {
    width: 70px;
    margin-bottom: 0px;
    transition-property: all;
    transition-duration: .3s;
}
.indexLogo {
    position: absolute;
    left: 30px;
    top: 30px;
    width: 60px;
}
  }