@font-face {
    font-family: BubbleBoop;
    src: url(BubbleBoop.ttf);
}

html {
    scroll-behavior: smooth;
}

body {
    margin-bottom: 7.5rem;

    -ms-overflow-style: none;
    scrollbar-width: none;
}

#navbar {
    position: fixed;
    width: 100%;
}

#navbar img {
    width: 20px;
}

.portfolio-item {
    position: relative;
    transition: all .2s ease-in-out;
    height: 350px;
}

.portfolio-item:hover {
    transform: scale(1.025);
}

.portfolio-item .detail {
    padding: 10px;
    background: rgba(1, 1, 1, 0.566);
    border-radius: 10px;

    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    vertical-align: middle;
    color: #fff;
}

.portfolio-item .detail small {
    font-size: 0.8rem;
    font-family: cursive;
}

.portfolio-item .detail-content {
    width: 100%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.portfolio-item:hover .detail {
    display: block;
}

.portfolio-cat {
    width: 100%;
    border-radius: 50px;
    background: #1E2128;
    display: block;
    color: #fff;
    justify-content: center;
    display: flex;
    padding: 10px;

    transition: all .2s ease-in-out;
}

.portfolio-cat img {
    width: 25px;
    height: 25px;
    margin-right: 10px;
}

.portfolio-cat:hover {
    filter: brightness(1.5);
    transform: scale(1.025);
}

.portfolio-item .content {
    width: 250px;
    height: 350px;
    border-radius: 10px;
    background-size: contain;
    background-repeat: no-repeat;
}

html::-webkit-scrollbar, body::-webkit-scrollbar {
    display: none;
}

.grow-hover {
    transition: all .2s ease-in-out;
}

.grow-hover:hover {
    transform: scale(1.1);
}

.swal2-popup.swal2-modal {
    background: none;
}

.image-modal-content {
    position: relative;
    width: fit-content;
    margin-right: auto;
    margin-left: auto;
}

.image-modal-content a {
    position: absolute;
    top: 0;
    right: 0;
    padding: 10px;
    background: #232323;
    color: #fff;
    border-bottom-left-radius: 10px;
    border-top-right-radius: 10px;
}

.image-modal-content img {
    width: 300px;
    border-radius: 10px;
}