
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@600&display=swap');

h2 {
    position: relative;
    color: white;
    font-family: 'Noto Sans', sans-serif;
    font-size: 4em;
    margin-top: 2.3em;
    margin-left: 4em;
}

.contWebsites {
    position: relative;
    margin-left: 4em;
}

.websites {
    position: relative;
    width: 100%;
}

.website {
    position: relative;
    display: inline-block;
    justify-content: center;
    width: 25%;
    height: 25%;
    margin-left: 4%;
    margin-bottom: 4%;

    box-shadow: 0px 0px 30px rgba(0,0,0, 0.6);
    background-repeat: no-repeat;
    background-size: 100%;

    transform: scale(1.0);
    transition: 0.5s;
}

.website:nth-child(1){
    background-image: url("../../img/websites/sitoEntermed.jpg");
}
.website:nth-child(2){
    background-image: url("../../img/websites/sitoEntermedProva.jpg");
}
.website:nth-child(3){
    background-image: url("../../img/websites/sitoAmap.jpg");
}
.website:nth-child(4){
    background-image: url("../../img/websites/sitoGestionale.jpg");
}
.website:nth-child(5){
    background-image: url("../../img/websites/sitoGestionale2.jpg");
}
.website:nth-child(6){
    background-image: url("../../img/websites/portfolio.jpg");
}

/* Hover Settings */
.website:nth-child(1):hover{
    box-shadow: 0px 0px 30px blue;
    transform: scale(1.1);
    transition: 0.5s;
}
.website:nth-child(2):hover{
    box-shadow: 0px 0px 30px white;
    transform: scale(1.1);
    transition: 0.5s;
}
.website:nth-child(3):hover{
    box-shadow: 0px 0px 30px deepskyblue;
    transform: scale(1.1);
    transition: 0.5s;
}
.website:nth-child(4):hover{
    box-shadow: 0px 0px 30px mediumpurple;
    transform: scale(1.1);
    transition: 0.5s;
}
.website:nth-child(5):hover{
    box-shadow: 0px 0px 30px mediumpurple;
    transform: scale(1.1);
    transition: 0.5s;
}
.website:nth-child(6):hover{
    box-shadow: 0px 0px 30px white;
    transform: scale(1.1);
    transition: 0.5s;
}

/* Other programs */

.contPrograms {
    position: relative;
    margin-left: 4em;
}

.programs {
    position: relative;
    width: 100%;
}

.program {
    position: relative;
    display: inline-block;
    justify-content: center;
    width: 25%;
    height: 25%;
    margin-left: 4%;
    margin-bottom: 4%;
    text-decoration: none;

    box-shadow: 0px 0px 30px rgba(0,0,0, 0.6);
    background-repeat: no-repeat;
    background-size: 100%;

    transform: scale(1.0);
    transition: 0.5s;
}

.program p {
    position: relative;
    top: 100%;
    color: white;
    font-family: 'Roboto Mono', monospace;
    font-size: 26px;
    text-align: center;
}

.program:nth-child(1){
    background-image: url("../../img/programs/snake.jpg");
}
.program:nth-child(2){
    background-image: url("../../img/programs/borsa.jpg");
}
.program:nth-child(3){
    background-image: url("../../img/programs/diffiehellman.jpg");
}
.program:nth-child(4){
    background-image: url("../../img/programs/vaccini.jpg");
}


/* Hover Settings */
.program:nth-child(1):hover {
    box-shadow: 0px 0px 30px limegreen;
    transition: 0.3s;
}
.program:nth-child(2):hover {
    box-shadow: 0px 0px 30px yellow;
    transition: 0.3s;
}
.program:nth-child(3):hover {
    box-shadow: 0px 0px 30px deepskyblue;
    transition: 0.3s;
}
.program:nth-child(4):hover {
    box-shadow: 0px 0px 30px purple;
    transition: 0.3s;
}
