@import url('./font.css');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'lc_font', 'Poppins', sans-serif;
    }

    /* podstawowy układ aby zdjęcie było responsywne i zajmowało zawsze całą powierzchnię*/
body.bg{
    background-image: url('../assets/login_bg.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size:cover;
}

.intro{
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: #161616;
    transition: 1s;
}

.intro-splash {
    position: absolute;
    top: 40%;
    left: 40%;
    transform: translate(-50% -50%);
}

.splash {
    position: relative;
    display: inline-block;
    bottom: -20px;
    opacity: 0; 
    font-family: 'lc_font' !important;
    font-size: 4rem;
    letter-spacing: 1.3px;
}

.color1{
    color: #ACC32B;
}

.color2{
    color: #4F5252;
}

.color3{
    color: #fff;
    font-size: 2rem !important;
}

.splash.active {
    bottom: 0;
    opacity: 1;
    transition: ease-in-out 0.5s;
}

.splash.fade {
    bottom: 150px;
    opacity: 0;
    transition: ease-in-out 0.5s;
}

.slogan {
    color: #fff;
    font-size: 2rem !important;
    text-align: center;
}

.main {
    text-align: center; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center; 
    height: 50vh;
}