#home{
    background-image: url(../assets/home-bg.jpg);
    background-size: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Ubuntu', sans-serif;
}
#card-custom{
    min-height: 80vh;
}
#card-row{
    min-height: 70vh;
}
#frame img{
    border-color: #000000 #cfcdcd ;
    border-image: none;
    border-radius: 50% 50% 50% 50%;
    border-style: solid;
    border-width: 10px;
    height: 300px;
    width: 300px;
    overflow: hidden;
}
img {
    height: 100%;
    width: 100%;
}
.font-bg{
    font-size: 75px;
}
.font-md{
    font-size: 50px;
}
.blue-text{
    color: #0273c9;
}
.head-text{
    color: #76067e;
}
.project-card{
    transition: 0.5s ease;
}
.project-card:hover {
    transform: translate(0, -10px);
    box-shadow: 5px 5px 20px #dd85f5;
}
.large-hide{
    display: none;
}
@media (max-width:540px) {
    #home{
        background-size:auto;
    }
    .font-bg{
        font-size: 55px;
    }
    .font-md{
        font-size: 30px;
    }
    .font-small{
        font-size: xx-small !important;
    }
    .break{
        display: none;
    }
    .large-hide{
        display: block;
    }
}