@font-face {
    font-family: Beehives;
    src: url(https://studiospinner.dev/fonts/beehives.ttf);
}

@property --shadow-size {
  syntax: "<length>";
  inherits: false;
  initial-value: 4px;
}

@property --shadow-color {
  syntax: "<color>";
  inherits: false;
  initial-value: rgba(1,1,1,0.5);
}

body {
    background-color: #3e3e3e;
    color: #d5d2cd;
    font-size: 2.5em;
}

.container {
    .container-fixed();

    @media (min-width: @screen-sm-min) {
        width: @container-sm;
    }

    @media (min-width: @screen-md-min) {
        width: @container-md;
    }

    @media (min-width: @screen-lg-min) {
        width: @container-lg;
    }

    padding-right: 0px;
    padding-left: 0px;
}

.main-container {
    height: 100vh;
    /* box-shadow: 0 9px 0px 0px white, 0 -9px 0px 0px white, 12px 0 15px -4px rgba(0, 0, 0, 0.8), -12px 0 15px -4px rgba(0, 0, 0, 0.8); */
}

.spinner a {
    color: #FF8F00;
    text-decoration: none;
}

.spinner h1 {
    color: #FF8F00;
    font-family: Beehives;
    font-weight: bold;
}

.spinner-row {
    margin-bottom: 30px;
    text-align: center;
}

.spinner-icon-image {
    min-height: 2.2em;
    min-width: 2.2em;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 1em;
}

.spinner-logo-image {
    min-height: 120px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.spinner-feature-image {
    min-height: 300px;
}

.spinner-feature-name {
    min-height: 200px;
    display: flex;
    align-content: center;
    justify-content: center;
}

.spinner-feature-image,
.spinner-feature-name {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.spinner-feature-name>img {
    width: inherit;
    object-fit: scale-down;
}

.grid-container {
    display: grid;
    transition: scale .5s, --shadow-size .5s, --shadow-color .5s;
    box-shadow: var(--shadow-size) var(--shadow-size) 4px var(--shadow-color);
    border-radius: 12px;
}

.spinner-feature-image,
.spinner-feature-name {
    grid-area: 1/1;
    transition: scale .5s;
}

.spinner-feature-image {
    border-radius: 12px;
}

.grid-container:hover {
    scale:1.05;
    transition: scale .1s, --shadow-size .5s, --shadow-color .5s;
    --shadow-size: 0px;
    --shadow-color: rgba(1,1,1,0);
    
}

.spinner-feature-name:hover {
    scale:1.075;
    transition: scale .2s;
}

.profile-container {
    display: flex;
    align-items: center;
}

.profile-label {
    color: #FF8F00;
    font-family: Beehives;
    font-weight: bold;
    font-size: x-large;
}

.body-sign-off {
    color: #FF8F00;
    font-family: Beehives;
    font-weight: bold;
    font-size: x-large;
}

footer {
    background-color: rgb(28, 28, 28);
    margin-top: -2.2em;
    min-height: 1.2em;
    align-items: center;
    display: flex;
    font-size: large;
}

.footer-row {
    align-items: center;
}