@import './variables.css';
@import './animations.css';

h1, h2, h3, h4, h5, h6, p, a, span, input {
    letter-spacing: -0.5px;
    margin: 0;
}

body {
    font-family: 'Geologica';
}

.button {
    border-radius: 1000px;
    padding: 6px 18px;
    display: flex;
    gap: 4px;
    align-items: center;
    cursor: pointer;
    justify-content: center;
    transition: opacity 0.2s, scale .7s cubic-bezier(0,.8,.26,.99);
}

.button:hover {
    opacity: 80%;
}

.button:active {
    scale:0.9;
}

.button.button-primary {
    background-color: #1D89C8;
}

.button.button-primary > p {
    color: white;
}

.button.button-white {
    background-color: white;
}

.button.button-white > p {
    color: #1D89C8;
}

.button.button-secondary {
    background-color: #EDEDED;
}

.button.button-secondary > p {
    color: #191919;
}

.button > p {
    font-size: 18px;
}

.button > img {
    width: 24px;
}

.limiter {
    width: 100%;
    border: 0.5px solid rgba(0,0,0,0.08);
}

input {
    outline: 0;
}

input::placeholder {
    color: white;
    transition: 0.3s;
    opacity: 1;
}

input:focus::placeholder {
    opacity: 0;
}

.accordion:not(.opened) > .content {
    opacity: 0;
    height: 0;
    margin-top: 0 !important;
}

.accordion.opened > .content {
    opacity: 1;
}

.accordion.opened {
    opacity: 1 !important;
}

.accordion.opened > .header > .icon {
    transform: rotate(180deg);
}

.info > p {
    color: rgba(255,255,255,0.75);
}

.info {
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(23px);
    border: 1px solid rgba(255,255,255,0.19);
}

.scroll-parallax {
    will-change: transform;
}