*{
    box-sizing: border-box;
}
a {
    color: inherit;
    text-decoration: none;
    background-color: transparent;
}
body ::selection {
    color: #fff;
    background: #feb800;
}
html, body {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: verdana,"Open Sans",sans-serif;
    font-size: 14px;
}
.home-wrapper {
    position: relative;
    display: flex;
    /*margin: 0;*/
    /*padding: 0*/
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
    flex-wrap: wrap;
    overflow: auto;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center;
    background-origin: content-box;
    background-size: cover;
}
/*.l-overlay{*/
/*    position: fixed;*/
/*    top: 0;*/
/*    left: 0;*/
/*    z-index: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    background-color: rgba(0, 0, 0, 0.5);*/
/*}*/
.home-wrapper a {
    font-weight: bold;
    margin: 3%;
    border: 7px solid #FFF;
    border-radius: 10px;
    color: #FFF;
    text-decoration: none;
    position: relative;
    display: flex;
    flex-direction: column;
    font-size: 25px;
    -webkit-transition: all .15s linear;
    -moz-transition: all .15s linear;
    -ms-transition: all .15s linear;
    -o-transition: all .15s linear;
    transition: all .15s linear;
    max-width: 270px;
    max-height: 270px;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 30%;
}
.lightBox {
    padding: 2em;
    color: #282828;
    border-radius: 0.25em;
    z-index: 99;
    width: 100%;
    height: 100%;
    position: relative;
}
.lightBox .lightBoxBackground {
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}
.lightBox .lightBoxContent {
    display: flex;
    flex-direction: row;
    justify-content: center;
    justify-items: center;
    align-items: center;
    width: 100%;
    height: 100%;
    flex-wrap: wrap;
}
.home-wrapper a div {
    text-align: left;
    display: flex;
    flex-direction: column;
}
.home-wrapper a span {
    font-size: 12px;
}
.home-wrapper a:hover {
    border: 7px solid #feb800;
    /*color: #e5232f;*/
}