body {
    margin: 0;
    padding: 0;
    height: 100vh;
    background-color: #4834d4;
    padding: 20px;
}

h1 {
    color: #ffffff;
    font-size: 42px;
    line-height: 44px;
    text-align: center;
}

.cross-container {
    position: absolute;
    top: 20px;
    right: 20px;
}

.cross-icon {
    width: 30px;
    height: 30px;
}

.project-tile-row {
    justify-content: center;
}

.project-tiles {
    height: fit-content;
    padding: 20px;
    margin: 20px;
    background-color: #ffffff;
    border-radius: 5px;
    text-align: center;
    cursor: pointer;
}

.project-tiles:hover {
    animation-name: pulse;
    animation-duration: 2s;
}

.project-image {
    width: inherit;
    height: 250px;
    border-radius: 5px;
    margin-bottom: 10px;
    /* border: 1px solid #000; */
}

.project-title {
    font-size: 22px;
    line-height: 24px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 10px;
}

.project-desc {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 15px;
}

.see-project-btn,
.view-project-btn {
    padding: 15px;
    text-align: center;
    background-color: #000;
    border: 2px solid #000;
    border-radius: 2px;
    color: #fff;
    float: right;
}

.see-project-btn {
    margin-left: 15px;
}

.see-project-btn:hover,
.view-project-btn:hover {
    text-decoration: none;
    border: 2px solid #000;
    background-color: #ffffff;
    color: #000;
    border-radius: 2px;
}

/* .scroll-indicator-container {
    position: relative;
} */
.show {
    display: inline;
}

.hide {
    display: none;
}

.scroll-indicator-down {
    bottom: 20px;
    animation-name: slideInDown;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}

.scroll-indicator-up {
    top: 20px;
    animation-name: slideInUp;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}

.scroll-indicator-up,
.scroll-indicator-down {
    position: fixed;
    width: 80px;
    height: 80px;
    color: #fff;

}

/* .fa{
    display: none;
} */
.rotate {
    transform: rotate(180deg);
}

@-webkit-keyframes pulse {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }

    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes pulse {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }

    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse;
}


@-webkit-keyframes slideInDown {
    from {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInDown {
    from {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.slideInDown {
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown;
}

@-webkit-keyframes slideInUp {
    from {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInUp {
    from {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.slideInUp {
    -webkit-animation-name: slideInUp;
    animation-name: slideInUp;
}


@media (min-width:0px) and (max-width: 767px) {
    h1 {
        font-size: 30px;
        line-height: 32px;
    }

    .project-tiles {
        padding: 15px;
        margin: 10px;
    }

    .project-image {
        margin-bottom: 10px;
        height: 150px;
    }

    .project-title {
        font-size: 16px;
        line-height: 20px;
        margin-bottom: 5px;
    }

    .project-desc {
        font-size: 12px;
        line-height: 14px;
        margin-bottom: 10px;
    }

    .fa{
        display: inline;
        margin-left: 20px;
    }

    /* .project-details{
        display: none;
    } */

    .view-project-btn,
    .see-project-btn {
        padding: 10px;
    }

    .scroll-indicator-up,
    .scroll-indicator-down {
        display: none;
    }
}

@media (min-width: 768px) and (max-width: 1024) {

    .scroll-indicator-up,
    .scroll-indicator-down {
        display: none;
    }
}