body {
    margin: 0;
}
.contentSlot {
    z-index: 1;
    position: relative;
    width: 100%;
    height: 90%;

    /*align-content: center;*/
}

.bannerSlot {
    position: relative;
    /*max-width: 600px;*/
    max-width: 30%;
    margin: 1rem auto 0 auto;
    border-radius: 20px;
    overflow: hidden;
    -webkit-box-shadow: 0px 0px 8px 6px rgba(34, 60, 80, 0.2);
    -moz-box-shadow: 0px 0px 8px 6px rgba(34, 60, 80, 0.2);
    box-shadow: 0px 0px 8px 6px rgba(34, 60, 80, 0.2);

    img {
        width: 100%;
    }
}
.linkSlot {
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    width: 30%;

    margin: auto;

    &>div {
        width: 128px;
        height: 128px;
        align-content: center;
        opacity: 1;

        &:hover {
            opacity: .9;
        }
    }
    &>div:nth-child(3) {
        /*position: absolute;*/
        right: 0;
    }
}
div.footerSlot {
    position: fixed;
    bottom: 0;
    background-color: deepskyblue;
    color: white;
    font-weight: bold;
    text-align: center;
    width: 100%;
    z-index: 5;
    padding: .5rem
}