.pride-sentence{
    margin: 50px;
    font-size: 20px;
}
.buttons-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.buttons{
    background: #1A237E;
    color: white;
    padding: 7px;
    border: none;
    border-radius: 5px;
    margin: 0px 10px;
    transition: 0.7s;
}
button:hover{
    transform: scale(1.1);
}
button:active{
    background: white;
    border: #1A237E 1px solid;
    color: #1A237E;
}
.like-works{
    font-size: 20px;
    margin: 10px;
}
.contact-us-btn{
    background: #1A237E;
    padding: 7px;
    border: none;
    border-radius: 5px;
    width: 150px;
    height: 40px;
    margin: 20px;
    transition: 0.7s;
}
.contact-us-link{
    color: white;
    text-decoration: none;
    font-size: 20px;
}
.cards-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 200px 0px;
}
.card{
    width: 280px;
    height: 600px;
    box-shadow: 5px 10px 20px #1A237E;
    padding: 5px;
    border-radius: 0px 0px 20px 0px;
    margin: 0px 25px;
    transition: 0.7s;
}
.card:hover{
    box-shadow: 5px 10px 30px #1A237E;
    transform: translate(0px, 10px);
}
.card:active{
    box-shadow: 5px 10px 15px #1A237E;
    transform: translate(0px, 10px);
}
.subtitle{
    margin: 10px;
    font-size: 20px;
    color: #1A237E;
}
.text-card{
    font-size: 15px;
    margin: 10px;
}
.images-works{
    width: 260px;
    height: 260px;
    border-radius: 5px;
}
.hidden {
  display: none;
}
/* Tablet */
@media (max-width: 650px){
    .pride-sentence{
        font-size: 15px;
    }
    .like-works{
        font-size: 15px;
    }
    .contact-us-btn{
        width: 30%;
        font-size: 15px;
    }
    .buttons{
        font-size: 10px;
        margin: 2px;
    }
    .card{
        width: 250px;
    }
    .images-works{
        width: 230px;
    }
}