:root{

    --bg-color: #232325;
    --bg-color-light: #2C2D30;
    --bg-color-superlight: #35363a;
    --bg-color-dark: #0d0d0e;

    --ac-color: #cc0033;
    --ac-color-light: rgb(255, 0, 0);
    --ac-color-dark: rgb(150, 0, 0);
    --text-color: white;

}

body::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    /*background: rgb(150, 150, 150);*/

}


body::-webkit-scrollbar-thumb {
    background: var(--bg-color-light);
    border-radius: 2px;
}
body::-webkit-scrollbar-thumb:active {
    background: var(--bg-color-dark);
}

::selection {
    /*background: var(--warn-color-dark);*/
    /*color: white;*/
}


body
{
    margin: 0;
    padding: 0;
    font-family: 'Ubuntu', 'Segoe UI', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow-x: hidden;

}


a {
    text-decoration: none;
    color: var(--ac-color);
    transition: 0.1s ease background, 0.1s ease color;
    cursor: pointer;
    font-size: 20px;

}

a:hover, a:active, a:focus, a#active{
    color: var(--text-color);
}

h1{
    margin: 0;
}


/*PAGE*/


body{
    min-height: 100%;
    width: 100%;
    position: absolute;
    display: flex;
    flex-direction: column;
    flex-grow: 0;
}

main{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    position: absolute;

    width: 100%;
    height: 100%;
}

section{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    max-width: 48%;
}

@media screen and (max-width: 700px) {
    section{
        max-width: 85%;
    }

}

/*home column*/


div.homeColumn{
    /*display: flex;*/
    /*flex-direction: column;*/
    /*align-items: center;*/
    /*justify-content: center;*/
    /*width: 30%;*/
    /*min-width: 275px;*/

    margin-top: 30px;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

@media screen and (max-width: 950px) {
    div.homeColumn{
        margin-top: 20px;
        width: 30%;
        min-width: 210px;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

    }
}


div.homeColumn a{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;

    width: 100%;
    height: 100%;

    box-sizing: border-box;
    padding: 15px 15px;

    border-radius: 13px;
    background-color: var(--bg-color-light);
    transition: background-color 0.1s ease, box-shadow 0.1s ease;
}
@media screen and (max-width: 950px) {
    div.homeColumn a {
        padding: 10px 15px 10px 10px;
    }
}

div.homeColumn a:hover{
    background-color: var(--bg-color-superlight);
    box-shadow: 0 0 12px 3px var(--bg-color-light);
}


div.homeColumn a .logoContainer{
    width: 80px;
    height: 80px;
    box-sizing: border-box;
    padding: 5px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border-radius: 10%;
}
div.homeColumn a .logoContainer.img{
    width: 100%;
}
@media screen and (max-width: 950px) {
    div.homeColumn a .logoContainer{
        width: 60px;
        height: 60px;
    }
}


div.homeColumn a .logoContainer span{
    font-size: 40px !important;
    font-weight: bold;
    color: var(--text-color);
}

div.homeColumn a .title{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin: 0 8px 0 20px;

}

div.homeColumn a .title p{
    color: var(--text-color);
    font-size: 26px;
    font-weight: bold;
    margin: 0;
}
@media screen and (max-width: 950px) {
    div.homeColumn a .title p{
        font-size: 23px;
    }
}

div.homeColumn a .title.URBPG p{
    font-family: 'Bebas Neue', sans-serif;
    font-weight: normal;
    font-size: 25px;
}
@media screen and (max-width: 950px) {
    div.homeColumn a .title.URBPG p{
        font-size: 21px;
    }
}
div.homeColumn a .title.acrolink p{
    font-family: 'scandia-web-stencil', sans-serif;
    font-weight: normal;
    font-size: 27px;
}
@media screen and (max-width: 950px) {
    div.homeColumn a .title.acrolink p{
        font-size: 25px;
    }
}




