/* Stile per la pagina principale*/

* {
    margin: 0;
}

.bg-primary {
    background-color: rgb(241, 241, 241) !important;
}

#logo {
    height: 15vh;
    width: 15vh;
    align-self: flex-start;
    margin-left: 2%; 
    transition: all 0.25s ease;
}

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

#title {
    color:rgb(46, 45, 45);
    font-weight: bold;
    font-size: 7vh;
}


.title {
    font-weight: bold;
    font-size: 7vh;
}

#namebar {
    background-color: rgb(241, 241, 241);
    height: 5vh;
    width: 100vm;
    margin-bottom: 1%;
    padding-top: 0.5%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

#namebar h2 {
    font-size: 100%;
    margin-right: 3%;
    margin-left: 3%;
}

.row {
    padding: 10px;
}

.card {
    transform: scale(0.9);
    border: 0px;
    background-color: rgb(241, 241, 241);
    transition-duration: 5s;
    -webkit-transition: all 0.1s ease;
    -moz-transition: all 0.1s ease;
    -o-transition: all 0.1s ease;
    -ms-transition: all 0.1s ease;
    transition: all 0.1s ease;
}
  
.card:hover {
    transform: scale(1);
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    -ms-transition: all 0.6s ease;
    transition: all 0.6s ease;
}

:root {
    --primary-color: rgb(188, 192, 199); 
}
  
.custom-bg {
    background-color: var(--primary-color); 
}

@media only screen and (max-width: 750px) {
    #logo  {
        display: none;
    }
}