body, html {
    width: 100vw;
    height: 100vh;
}

.container-master {
    width: 100%;
    height: 100%;
    background-color: rgb(243, 243, 243);
    padding-top: 25px;
}


.card {
    height: 60px;
    width: 90%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    justify-content: space-between;
    padding: 0px 30px 0 30px ;
    background-color: #4a6bff;
    border: none;
    color: white;
    margin: auto;
}

.card1 {
    width: 90%;
    margin: auto;
    height: auto;
    padding-top: 120px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 20px;
}

.fas {
    font-size: 1.3rem;
}

.fas:hover {
    color: #dbdbdb;
    cursor: pointer;
}

.title{
    color: white;
}

.responsive-title {
    font-size: 1rem;
}
@media (max-width: 768px) {
    .responsive-title {
        font-size: 3vw;
    }
}
@media (max-width: 576px) {
    .responsive-title {
        font-size: 4vw;
    }
}