/* variables */
:root{
    --dark-purble: rgb(64, 25, 77);
    --transparent-dark-purble: rgba(64, 25, 77, .5);
    --purble: rgb(131, 22, 194);
    --light-transparent-purble: rgba(253, 204, 255, 0.692);
    --light-purble: rgb(253, 204, 255);
    --pink: rgb(248, 95, 253);
    --transparent-pink: rgba(248, 95, 253, 0.5);
    padding-bottom: 40vh;
    margin-bottom: 40vh;
}

@font-face {
    font-family: Rainbow_BoldItalic;
    src: url(/fonts/Web_Open_Font_Format/Rainbow2000-BoldItalic.woff);
}

@font-face {
    font-family: Cheese;
    src: url(/fonts/Web_Open_Font_Format/FreeCheese-Regular.woff);
}

@font-face {
    font-family: Funnytype;
    src: url(/fonts);
}

/* footer */

footer{
    position: fixed;
    min-height: 45px;
    margin-bottom: 0;
    margin-right: 0;
    margin-left: 0;
    bottom: 0px;
    right: 0px;
    left: 0px;
    background-color: rgb(230, 238, 123);
    border-top: 2px solid;
    border-color: rgb(238, 255, 0);
    box-sizing: border-box;
}

footer .externalSelfLinks{
    color: rgb(250, 255, 204);
    background-color: rgb(127, 136, 0);
    font-size: 10px;
    display: grid;
    position: absolute;
    border-radius: 4px;
    width: 25%;
    gap: 3px;
    min-height: 40px;
    margin-top: 0;
    margin-right: 0;
    top: 0;
    right: 0;
    padding: 4px;
    min-width: 200px;
    grid-template-columns: repeat(2, 1fr 1fr);
    box-sizing: border-box;
}

footer .externalSelfLinks div, footer .externalSelfLinks nav{
    border: 1px solid;
    border-color: rgb(116, 119, 102);
    border-radius: 3px;
    background-color: rgb(79, 87, 7);
    text-align: center;
    align-self: center;
    box-sizing: border-box;
    transition-property: scale;
    transition-duration: .1s;
}

footer .externalSelfLinksH:hover{
    background-color: rgb(116, 119, 102);
    color: rgb(213, 230, 67);
    border-color: rgb(79, 87, 7);
    scale: 1.25;
    transition-duration: .2s;
}

footer h3{
    width: 75%;
    text-align: center;
    padding: 0px;
    margin: 0px;
    color: rgb(93, 110, 0);
    -webkit-text-stroke: .5px;
    -webkit-text-stroke-color: rgba(129, 0, 204, 0.349);
}