html, body {
    max-width: 100%;
    overflow-x: hidden;
    overflow-y: hidden;
    scroll-behavior: smooth;
    font-family: 'Montserrat', sans-serif;
}
ion-icon{
    color: white;
}

/*****************************************
  Warstwa 1
******************************************/
.page0{
    transition: all .5s ease-in-out;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    z-index: 0;
}
.armada0{
    transition: all .5s ease-in-out;
    height: 100%;
    flex-basis: 50%;
    background-color: #ffffff;
}
.dtp0{
    transition: all .5s ease-in-out;
    height: 100%;
    flex-basis: 50%;
    background-color: #000000;
}
/*****************************************
  Warstwa 2
******************************************/
canvas{
    transition: all .5s ease-in-out;
    position: absolute;
    width: 100%;
    height: 100%;
    left:0%;
    top:0%;
    z-index: 1;
}



/*****************************************
  Warstwa 3
******************************************/
.page1{
    transition: all .5s ease-in-out;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    z-index: 3;
}

.armada{
    transition: all .5s ease-in-out;
    padding: 8em;
    flex-basis: 50%;
    justify-content: space-between;
    display: flex;
    flex-direction: column;
}
.logo-armada{
    transition: all .5s ease-in-out;
    height: 50px;
    background-image: url(armada_logo.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left center; 
}

.buttons{
    transition: all .5s ease-in-out;
    display: flex;
}
.button{
    transition: all .1s ease-in-out;
    padding: 0px 30px 0px 0px;
    
}
.button:hover{
    color: #E50043;
    cursor: pointer;
}
.button:hover a{
    color: #E50043;
}

.text h1{
    transition: all .5s ease-in-out;
    font-weight: 700;
    font-size: 1.6rem;
    letter-spacing: 1px;
    margin: 0 0 16px 0;
}
.text h2{
    transition: all .5s ease-in-out;
    font-weight: 500;
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin: 0;
}
.text a{
    font-weight: 500;
    font-size: 0.75rem;
    letter-spacing: 1px;
    margin: 0;
    text-decoration: none;
}
.armada a{
    color: #000000;
}
.dtp a{
    color: #ffffff;
}
.line{
    transition: all .5s ease-in-out;
    height: 2px;
    width: 80px;
    background: #E50043;
    margin: 30px 0px;
}
.dtp{
    transition: all .5s ease-in-out;
    color: #ffffff;
    padding: 8em;
    flex-basis: 50%;
    justify-content: space-between;
    display: flex;
    flex-direction: column;
}
.logo-dtp{
    transition: all .5s ease-in-out;
    height: 50px;
    background-image: url(dtp_logo.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left center; 
    cursor: pointer;
}


/*************************************************************
  MOBILE! 601-1200px
**************************************************************/
@media only screen and (min-width: 951px) and (max-width: 1280px) {
    .buttons{
        transition: all .5s ease-in-out;
        display: grid;
    }
}
/*************************************************************
  MOBILE! 601-1200px
**************************************************************/
@media only screen and (min-width: 641px) and (max-width: 950px) {
    .buttons{
        transition: all .5s ease-in-out;
        display: grid;
    }
    .page0{
        display: grid;
    }
    .page1{
        display: grid;
    }
}
/*************************************************************
  MOBILE! 601-1200px
**************************************************************/
@media only screen and (min-width: 0px) and (max-width: 640px) {
    .buttons{
        transition: all .5s ease-in-out;
        display: grid;
    }
    .page0{
        display: grid;
    }
    .page1{
        display: grid;
    }
    
    .armada{
        transition: all .5s ease-in-out;
        padding: 4em 10vw;
    }
    .dtp{
        transition: all .5s ease-in-out;
        padding: 4em 10vw;
    }
}