*{
    margin: 0;
    padding: 0;
}

body {
    overflow-x: hidden;
}

/* ##### Stile della Navbar ##### */
.navbar {
    width: 100vw;
    height: 10vh;
    background-color: white;
    display: flex;
    position: fixed;
    z-index: 3;
    font-family: 'Authentic', sans-serif;
    color: black;
}

.navbar_menu{
    height: 10vh;
    width: 20vw;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2vw;
}

.navbar_menu a{
    margin-right: 15px;
}

.navbar_menu a:hover{
    border-bottom: solid 2px black;
}

.tasto_menu_responsive{
    display: none;
}

.navbar_titolo{
    height: auto;
    width: 90vw;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2vw;
    font-weight: bold;
}

.navbar_img{
    height: 25vh;
}

.navbar_social{
    height: 10vh;
    width: 20vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar_social img{
    width: 4vw;
    transition: transform 0.3s ease;
}

.navbar_social img:hover{
    transform: scale(1.1);
}


.cont_musica{
    margin-top: 10vh;
    position: absolute;
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.tasto_canzone{
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: flex-start;
    justify-content: right;
}

.tasto_canzone img{
    margin-right: 40px;
    width: 5vh;
    border-radius: 100px;
    background-color: rgb(224, 224, 224);
    border: solid 3px rgb(0, 238, 255);
    box-shadow: -2px 2px px rgb(0, 238, 255);
    cursor: pointer;
}

/* ############### HOME ############## */

.spaziosopra{
    width: 100vw;
    height: 10vh;
}

.container_home{
    width: 100vw;
    height: 90vh;
    background-image: url('../img/webp_img/sfondo.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: row;
    color: black;
    border-bottom: solid 2px white;
    z-index: 2;
}

.container_prodotti{
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100vw;
    height: 90vh;
    font-family: 'Coco Gothic' sans-serif;
}

.prodotto{
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
}

.prodotto img{
    width: 25vw;
    border-radius: 10%;
    box-shadow: 0px 10px 20px white;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.prodotto img:hover{
    transform: scale(1.03);
}

.prodotto a{
    font-size: 2vw;
    font-family: 'Coco Gothic' sans-serif;
    border: solid 2px white;
    color: white;
    font-weight: bold;
    border-radius: 1vw;
    padding: 0.5% 2%;
}

.prodotto a:hover{
    border-radius: 1.5vw;
    transition: calc(0.3s);
}


.prodotto a:not(:hover){
    border-radius: 1vw;
    transition: calc(0.3s);
}





/*### FONT ###*/

@font-face {
    font-family: 'Coco Gothic';
    src: url('/font/coco_gothic/Coco-Gothic-Light-trial.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Authentic';
    src: url('/font/authentic/Authentic\ Declaration.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}