@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

html, body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #fff;
}

a.box {
    display: flex;
    margin: 15px;
    background-color: #f5f5f5;
    border: 1px solid #0000000d;
    border-radius: 8px;
    overflow: hidden;
    color: #000;
    text-decoration: none;
    transition: transform .2s ease-in-out;
    position: relative;
}

.box:hover {
    transform: scale(1.01);
}

.index, .name {
    background: linear-gradient(90deg,#0079BA 0%,#0079BAba 100%);
    color: #fff;
    font-weight: 700;
}

.index {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 15px;
    font-size: 18px;
}

.info {
    padding: 15px;
}

.title {
    font-size: 18px;
    font-weight: 700;
    margin-right: 150px;
}

.faculty {
    font-size: 15px;
    opacity: .6;
    margin-top: 5px;
}

.name {
    position: absolute;
    right: 0;
    padding: 5px 15px;
    border-bottom-left-radius: 8px;
    font-size: 15px;
}