/* Resetowanie stylów i podstawowe style strony */
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
  }
  
  .box {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }
  
  .menu {
    color: white;
    height: 40vh;
    background-image: url('http://ridenow-polska.pl/img/obrazek.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .menu-title-box {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
  }

  .menu-title {
    font-size: 5vmin;
    margin: 0;
  }
  
  .menu-subtitle {
    font-size: 3vmin;
    margin: 10px 0;
  }
  
  .content {
    flex: 1;
    flex-direction: column;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .content-desc{
    margin-top: 5vh;
    width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .content-title {
    font-size: 3.5vmin;
    margin: 0;
  }

  .content-bar{
    width: 100%; 
    height: 0.2vh; 
    background-color: #FF0000;
  }
  
  .content-subtitle {
    font-size: 2vmin;
    margin: 10px 0;
  }

  .content-info-box{
    width: 70%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    display: flex;
    
  }

  .content-info-row{
    width: 100%;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    display: flex;
    margin-top: 5vh;
  }

  #content-info-top{
    height: 75vmin;
  }

  #content-info-down{
    height: 60vmin;
  }

  .content-info{
    width: 45%;
    height: 100%;
    margin-left: 2.5%;
    margin-right: 2.5%;
    flex: 1;
    text-align: left;
    align-items: center;
    justify-content: left;
  }

  .info-photo{
    width: 100%;
  }

  .info-title{
    text-align: left;
    font-size: 2vmin;
  }

  .info-subtitle{
    text-align: left;
    font-size: 2vmin;
  }

  .content-2 {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #F5F5F5;
    padding: 20px;
  }

  .content-2-box {
    width: 70%;
    text-align: center;
    justify-content: center;
  }

  .content-2-title{
    font-size: 3vmin;
    text-align: center;
  }

  .content-2-row {
    display: flex;
    flex-direction: row;
    width: 100%;
    margin-top: 2vh;
  }

  .content-2-item {
    display: flex;
    flex-direction: column;
    width: 45%;
    margin-left: 2.5%;
    margin-right: 2.5%;
    justify-content: start;
    align-items: center;
    padding: 2vmin;
    color: black;
    text-decoration: none;
    border-radius: 100px;
  }

  .content-2-item:hover {
    background-color: #FFA500;
  }

  .product-photo {
    margin-top: 2vh;
    width: 70%
  }

  .product-subtitle {
    text-align: left;
    font-size: 2vmin;
  }

  td {
    text-align: left;
    font-size: 1.8vmin;
  }

  .footer {
    background-color: #191919;
    color: #C8D3D3;
    padding: 10px;
    text-align: center;
  }

  .content-info {
    text-align: center;
    padding: 20px;
  }

  @media only screen and (max-device-width: 700px) {
    .content-2-row {
      display: flex;
      flex-direction: column;
      margin: 0;
      width: 100%;
    }

    .content-info-row {
      display: flex;
      flex-direction: column;
      margin: 0;
    }

    .content-2-item{
      width: 100%;
      margin: 0;
      margin-top: 2vh;
      background-color: #FFA500;
      border-radius: 50px;
    }

    #content-info-top{
      height: auto;
    }
  
    #content-info-down{
      height: auto;
    }

    .content-info {
      width: 90%;
    }

    .product-photo {
      width: 80%
    }

    .product-subtitle {
      font-size: 4vmin;
    }
  
    td {
      font-size: 3vmin;
    }

    .info-title{
      font-size: 4vmin;
    }
  
    .info-subtitle{
      font-size: 3.2vmin;
    }

    .menu-title {
      font-size: 6vmin;
    }
    
    .menu-subtitle {
      font-size: 4vmin;
    }

    .content-title {
      font-size: 5vmin;
      margin: 0;
    }
    
    .content-subtitle {
      font-size: 3.5vmin;
      margin: 10px 0;
    }

    .content-2-title{
      font-size: 5vmin;
    }
  }
  