@font-face{
    font-family: "Roboto";
    src: url("fonts/Roboto/Roboto-VariableFont_wdth\,wght.ttf");
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;

    color: white;

    font-family: "Roboto";

    scroll-behavior: smooth;
}

body{
    width: 100%;
}

:root{
    --background: #222222;
    --special: rgb(0, 162, 255);
    --special-faded: rgb(22, 111, 163);
}

header, footer, section{
    background-color: var(--background);
}

a{
    text-decoration: underline;
    color: var(--special);
}

a:visited{
    color: var(--special-faded);
}

.subtle-text, .very-subtle-text{
    transition: .3s ease;
}

.subtle-text{
    color: #aaa  !important;
}

.very-subtle-text{
    color: #666 !important;
}

.subtle-text:hover, .very-subtle-text:hover{
    color: white !important;
}

.btn{
    background-color: transparent;
    padding: .5rem 1rem;
    border-radius: 1rem;
    color: #999;
    border: solid .1rem #999;
    transition: all .3s ease;
}

.btn:hover{
    cursor: pointer;
    transform: translateY(-20%);
    border-color: white;
    color: white;
}

.btn-full{
    width: 95%; 
}

.btn-disabled{
    color: #666 !important;
    border-color:  #666 !important;
}

.btn-disabled:hover::before{
    content: " Wkrótce dostępne ";
    position: absolute;
    top: -150% ;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    border-radius: 1rem;
    padding: .5rem 1rem;
    color: black;
}

.btn-disabled:hover::after{
    content: " ";
    width: 1rem;
    aspect-ratio: 1/1;
    background-color: white;

    position: absolute;
    top: -75%;
    left: 50%;
    transform: translateX(-50%);

    transform: rotate(45deg);
}

#contact-info{
    margin-top: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

#contact-info .contact{
    position: relative;
    padding-left: 2.5rem;
}

#contact-info .contact img{
    height: 2rem;
    filter: invert(1);
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.copyable:hover{
    cursor: pointer;
}

.copyable:hover .tooltip{
    visibility: visible ;
}


/* TOOLTIP */

.tooltip{
    position: absolute !important;
    bottom: 150%;
    background-color: white;
    color: black;

    padding: .5rem 1rem;
    border-radius: 1rem;
    display: grid;
    place-items: center;

    font-size: 1rem;
    font-weight: 500;
    min-width: 15rem;
    z-index: 20;
    visibility: hidden;
}

.tooltip::before{
    content: '';
    position: absolute;
    width: 0;
    height: 0;

    border-left: .5rem solid transparent;
    border-right: .5rem solid transparent;
    border-top: .5rem solid white;
    top: 100%;
    left: 10%;
}