body{
    background-image:url('../assets/img/bc_portal.jpg');
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    background-attachment:fixed;
    font-family:'Segoe UI',sans-serif;
    margin:0;
    color:white;
}

h1{
    font-size:40px;
    font-weight:300;
    margin:50px;
}

.portal{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(220px,1fr));
    gap:10px;
    padding:20px 50px;
    max-width:1200px;
}

.tile{
    height:120px;
    text-decoration:none;
    color:white;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    transition:.3s;
    overflow:hidden;
}

.tile:hover{
    transform:scale(1.05);
}

.logo-app{
    width:80px;
    height:80px;
    object-fit:contain;
}
.icon{
    font-size:80px;
    height:80px;
    display:flex;
    justify-content:center;
    align-items:center;
}
.tile span{
    color:white;
    font-size:14px;
    text-align:center;
}
@media(max-width:768px){
    .portal{
        grid-template-columns:repeat(2,1fr);
    }

    .header h1{
        font-size:24px;
    }
}