body{
    margin: 0;
    padding: 0;
}

.hero-section{
    min-height: 100vh;
    background: url('/assets/images/bg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section .shade{
    background-color: black;
    opacity: 0.5;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 2;
}

.hero-section .inner{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 30px;
    z-index: 3;
}

.hero-section .inner .logo{
    margin-bottom: 100px;
}

.hero-section .inner .logo img{
    height: 400px;
    max-width: 90%;
    display: block;
    margin: auto;
}

.hero-section .inner .links{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-section .inner .links a{
    text-decoration: none;
    font-size: 80px;
    margin: 30px;
    color: white;
}

.hero-section .inner .links a i{
    /* animate pulse */
    animation: pulse 1s infinite;
}

@keyframes pulse{
    0%{
        transform: scale(1);
    }
    50%{
        transform: scale(1.2);
    }
    100%{
        transform: scale(1);
    }
}

@media (max-width: 992px){

    .hero-section .inner .logo img{
        height: 200px;
    }

    .hero-section .inner .logo{
        margin-bottom: 50px;
    }

    .hero-section .inner .links a{
        font-size: 40px;
        margin: 20px;
    }
}