*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}

p{
    margin-bottom: 0;
}

.navbar{
    width: 100vw;
    height: 12vh;
    background-color: #dc965a;
}

.homejumbo{
   width: 100vw;
   height: 88vh;
   background-image:url(homejumbo.jpg);
   background-repeat: no-repeat;
   background-size: cover;
   background-attachment: fixed;
   
}

.homejumbo h1{
    font-size: 6vw;
}

.intro{
    background-color: rgba(0, 0, 0, 0.811);

}

.intro p{
    color: #c8c8c8;
}

.intro p b{
    color: white;
}

.intro h2{
    color: white;
}

.backzucca{
    /*background-image: url(zuccablackhit.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;*/
    background-color: #c8c8c8;
    color: black;
}

.backothercustom{
    background-color:#ffeee0;
    color: black;
    
}

.costumi h1{
    color: #dc965a;
}

.linkbutton{
    border: 1px solid rgb(10, 10, 10);
    background-color: transparent;
    transition: all 0.5s ease;
    border-radius: 50px;
}

.linkbutton:hover{
    transform: scale(1.07);
    background-color: #dc965a
}

.linkbutton a{
   text-decoration: none;
   color: rgb(0, 0, 0)
   
}

.card {
    width: 90vw;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease-in-out;
    margin: 20px auto;
    text-align: center;
  }

  .card2{
    width: 90vw;
    background-color: #e5e4e4;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease-in-out;
    margin: 20px auto;
    text-align: center;
  }
  
  @media screen and (max-width: 600px) {
    .card img{
        width: 70vw;
        
    }

    .card2 img{
        width: 70vw;
        
    }
  }

  @media screen and (min-width: 600px) {
    .card img{
        width: 300px;
        
    }

    .card2 img{
        width: 300px;
        
    }

    
  }

  @media screen and (max-width: 650px) {
    .homejumbo{
        
        background-image:url(homejumbo169.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment:local;
        
     }

     .homejumbo h1{
        font-size: 13vw;
     }
  }

  .ghostbunner{
    position: fixed;
    bottom: 0;
    right:0;
    z-index: 1000;
    transition: all .5s ease;
  }

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

