/*
    Slide-in animation from: https://stackoverflow.com/questions/6805482/css3-transition-animation-on-load
*/

.box {
    margin: 0 0%;
    height: 100%;
    overflow: hidden;
}

@keyframes slideInFromRight {
    0% {
        transform: translateX(25%);
    }
    100% {
        transform: translateX(0);
    }
}

.box ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    position: relative;
    /*transition: ease-in 0.6s;*/
    animation: 0.5s ease-out 0s 1 slideInFromRight;
}

.box ul li {
    margin: 20px 20px 60px;
    position: relative;
    padding: 10px 20px;
    background-color: rgba(128, 128, 128, 0.082);
    color: rgb(0, 0, 0);
    border-radius: 7px;
    line-height: 25px;
    width: 80%
}

.box .title {
    font-weight: bolder;
    margin-bottom: 15px;
    font-size: larger;
    color: rgb(9, 23, 148);
}

.box .link {
    text-align: right;
    font-weight: bold;
}