﻿@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap');

* {
    box-sizing: border-box;
}

.footerimg {
    width: 100%;
    z-index: 0;
    filter: drop-shadow(0 0 50px rgba(0, 0, 0, .5));
    margin-bottom: -.5rem;
    -webkit-user-drag: none;
}

.footerbg {
    background-image: linear-gradient(black, rgb(0, 43, 32));
    display: flex;
    z-index: 1;
    position: relative;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.footerlogo {
    padding: 1.25rem;
    margin: auto 0;
    opacity: .8;
    filter: drop-shadow(0 10px 30px black);

    transition-duration: .05s;
}

.footerlogo:hover {
    opacity: 1;
    scale: 105%;
}

.footerlogo:active {
    opacity: .65;
    scale: 100%;
}

.buckethat {
    opacity: .8;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: 15rem;
    height: auto;
    filter: drop-shadow(0 15px 10px black);

    transition-duration: .3s;
}

.buckethat:hover {
    opacity: 1;
    translate: 0 -1rem;
    filter: drop-shadow(0 30px 20px black) drop-shadow(0 0 80px rgb(61, 165, 143));
}

.buckethat:active {
    opacity: .8;
    translate: 0 -.5rem;
    filter: drop-shadow(0 15px 10px black) drop-shadow(0 0 100px rgb(80, 173, 153))
}

.footericons {
    display: inline-flex;
}

.reversepsych {
    background-color: rgb(0, 43, 32);
    text-align: center;
    width: 100%;
    margin: auto;
    padding-top: .5rem;
    padding-bottom: .5rem;
}

.reversepsychtext {
    font-family: Lexend;
    font-size: .7rem;
    width: max-content;
    margin: auto;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    color: rgb(0, 122, 95);
}

.socials {
    margin-left: auto;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.socials img{
    width: 4rem;
    height: 4rem;
}

.emailbounds {
    position: absolute;
    display: flex;
    transform: translate(-18%, 150%);
}

.email {
    color: rgb(228, 228, 228);
    font-family: Lexend;
    position: relative;
    display: inline-block;
    font-size: 18px;
    width: max-content;
    padding: 0;
    margin: 0 0;
    text-align: right;
    word-break: break-all;
    opacity: .9;
}

.icon {
    opacity: .8;
    padding: .6rem;
    width: 72px;
    filter: drop-shadow(0 5px 10px black);

    transition-duration: .05s;
}

.icon:hover {
    opacity: 1;
    scale: 105%;
}

.icon:active {
    opacity: .65;
    scale: 95%;
}

@media screen and (max-width: 1000px) {
    .footerlogo {
        display: none;
    }
    .buckethat {
        position: absolute;
        right: 0;
        left: 0;
        margin-left: clamp(2rem, 20vw, 20rem);
        width: clamp(2rem, 24vw, 24rem);
        height: auto;

        transition-duration: .3s;
    }
    .reversepsych {
        display: none;
    }
    .socials {
        padding-bottom: 0;
    }
    .footerbg {
        padding-top: 0;
        padding-bottom: 5rem;
    }
}
@media screen and (max-width: 800px) {
    .socials {
        transform-origin: right center;
        transform: scale(0.75);
        padding-bottom: 0;
    }
    .footerbg {
        padding-top: 0;
        padding-bottom: 3rem;
    }
}
@media screen and (max-width: 500px) {
    .socials {
        transform-origin: right center;
        transform: scale(0.6);
        padding-right: 0;
    }
}
@media screen and (max-width: 325px) {
    .socials {
        transform-origin: right center;
        transform: scale(0.4);
        padding-top: 4rem;
    }
}