.bottomInfo {
    background-color: #3f3f3f;
    width: 100%;
    box-sizing: border-box;
    min-height: 100px;
    max-height: 200px;
    display: flex;
    flex-direction: column;
    /* justify-items: space-around; */
    align-items: center;
    overflow: hidden;
    flex-wrap: wrap;
    align-content: center;
    font-family: 'Montserrat', sans-serif;
}

.bottomInfo .block {
    font-size: 12px;
    box-sizing: border-box;
    width: 150px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: white;
    text-transform: capitalize;
    margin: 10px;
}

.bottomInfo .block.notCapitalized {
    text-transform: none;
}

.bottomInfo .block::after {
    content: "";
    position: absolute;
    width: 99.5%;
    height: 3px;
    bottom: -0.5em;
    left: 0;
    background: linear-gradient(45deg, rgba(0, 200, 0, 1) 0%, rgba(0, 100, 254, 1) 100%); 
    border-radius: 0px 0px 10px 0px;
}

.block h {
    font-weight: bold;
    position: relative;
    font-size: 12px;
    margin: 0.5em;
}

.bottomInfo a, .bottomLine a {
    color: white;
    text-decoration: none;
    position: relative;
    font-size: 12px;
    margin: 0.5em;
}



img  {
    position: relative;
    z-index: 2;
}



.block a:first-child{
    font-weight: bold;
}

.block.icon {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}



.block .linked {
    cursor: hand;
    cursor: pointer;
}

.bottomLine {
    background-color: #3f3f3f;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    width: 100%;
    color: white;
}

.bottomLine .divider:not(:last-child) {
    content: "";
    width: 10px;
    height: 10px;
    background: linear-gradient(45deg, rgba(0, 200, 0, 1) 0%, rgba(0, 100, 254, 1) 100%); 
    border-radius: 10px;
}

@media (max-device-width: 800px) {
    
    @media (orientation: portrait) {
        .bottomInfo .block {
            width: 50vw;
        }
        .bottomInfo {    
            max-height: 1000px;
        }
        .bottomInfo a, .bottomInfo h {
            font-size: 30px;
        }
        .block img {
            width: 10vw;
        }
    }
        
    @media (orientation: landscape) {
        
    }
}

@media (hover: hover) {
    .block.icon a.linked:hover:before {
        content: "";
        z-index: 1;
        position: absolute;
        width: 110%;
        height: 110%;
        left: -5%;
        top: -10%;
        background: linear-gradient(45deg, rgba(0, 200, 0, 1) 0%, rgba(0, 100, 254, 1) 100%); 
        border-radius: 50px;
    }
    .block:not(.icon) a.linked:hover:before {
        content: "";
        position: absolute;
        width: 10px;
        height: 10px;
        left: -1.5em;
        top: 0.2em;
        background: linear-gradient(45deg, rgba(0, 200, 0, 1) 0%, rgba(0, 100, 254, 1) 100%); 
        border-radius: 10px;
    }
}

@media (hover: none) {
    
}
