/*¯\_(ツ)_/¯ Why are you looking at my CSS?*/
html {
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
html::-webkit-scrollbar {
    display: none;
}
::selection {
    background-color: rgb(250, 100, 0, 0.4);
}
a {
    text-decoration: none;
}
#mouseRing {
    position: fixed;
    top: -0.2rem;
    left: 1.2rem;
    z-index: 20;
    pointer-events: none;
    color: white;
    background: rgb(250, 100, 0);
    font-size: 1.5rem;
    line-height: 1.2rem;
    padding: 0.3rem;
    border-radius: 0.5rem;
    opacity: 0;
}
.centerWrapper {
    width: 100%;
    height: 100%;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.horizontalCenterWrapper {
    width: 100%;
    inset: 0;
    display: flex;
    justify-content: center;
}
.hoverable {
    cursor: pointer;
}
.wordButton {
    position: relative;
    display: inline-block;
}
.wordButton::after {
    content: "";
    position: absolute;
    left: 0rem;
    bottom: 0rem;
    width: 100%;
    height: 0.16rem;
    border-radius: 1rem;
    background: rgb(250, 100, 0);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}
.wordButton:hover::after {
    transform: scaleX(1);
}
.wordButton2 {
    color: #080808;
    transition: color 0.25s ease;
}
.wordButton2:hover {
    color: rgb(250, 100, 0);
}

.text-sm {
    font-size: 1rem;
}
.text-md {
    font-size: 1.5rem;
}
.text-lg {
    font-size: 2rem;
}

#footerPlaceholder {
    width: 100%;
    height: 20rem;
    background-color: transparent;
}
#footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 20rem;
    background-color: rgb(250, 100, 0);
    overflow: hidden;
    z-index: -1;
}
#footerImg {
    position: relative;
    width: 80%;
    margin-top: 0.5rem;
    min-width: 300px;
    max-width: 2000px;
}
#footerText {
    position: relative;
    display: flex;
    width: 80%;
    color: white;
    justify-content: space-between;
    min-width: 300px;
    max-width: 2000px;
}
.footerBadge {
    position: absolute;
    top: 0rem;
    left: 0rem;
    height: 8rem;
    transform-origin: center center;
    will-change: transform;
}

#maskBg {
    position: fixed;
    inset: 0;
    background-color: white;
    z-index: 50;
    visibility: hidden;
    opacity: 0;
}
#mask {
    position: fixed;
    inset: 0;
    background-color: rgb(250, 100, 0);
    z-index: 51;
    mask-image:
        linear-gradient(#000 0 0),
        url(image/logoCarrot.svg);
    mask-repeat:
        no-repeat,
        no-repeat;
    mask-position:
        0 0,
        50% calc(50% - 0.1rem);
    mask-size:
        100% 100%,
        3.5rem;
    mask-composite: exclude;
    visibility: hidden;
}

@media (max-width: 720px) {
    html {
        font-size: 14px;
    }
}
@media (max-width: 620px) {
    html {
        font-size: 12px;
    }
}
@media (max-width: 520px) {
    html {
        font-size: 10px;
    }
}
@media (hover: none), (pointer: coarse) {
    #mouseRing {
        display: none;
    }
}