html{
    scroll-behavior: smooth;
}
body{
    background-color: #FFFFFF;
    color: #001F3F;
    font-family: 'Rubik', sans-serif;
    flex-direction: column;
}
hr{
    color:#FF851B
}
h1{
    margin:0;
    font-size: 2.5rem;
}
section{
    text-align: center;
    padding: 0 3rem;
    margin: 1rem 0;
}
header{
    margin: 1rem 0.5rem;
    height: 3rem;
    width: 100%;
    position: sticky;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
}
footer{
    background-color: black;
    color: white;
    width: 100%;
    height: 3rem;
}
a{
    text-decoration: none;
    color: #001F3F;
}
iframe{
    border-radius: .5rem;
    border: .125rem solid transparent;
    background: linear-gradient(white, white) padding-box,
    linear-gradient(to right, #FF851B, #001F3F) border-box;
}
table{
    width: 100%;
    border-spacing: 1rem;
    text-align: center;
}
th, td{
    padding: 1rem;
    border-radius: .5rem;
    border: .125rem solid transparent;
    background: linear-gradient(white, white) padding-box,
    linear-gradient(to right, #FF851B, #001F3F) border-box;
}
li{
    padding: .2rem;
    text-align: left;
}
.flex{
    display: flex;
    align-items: center;
    justify-content: center;
}
.divider{
    height: .125rem;
    width: 30%;
    background-color: #FF851B;
    margin: .5rem auto;
}
.contact{
    justify-content: left !important;
    gap: .3rem;
}
.mini-menu{
    gap: .5rem;
        cursor: pointer;
}
.cube-back{
    width: 100%;
    height: 100%;
    border-radius: .3rem;
    background-size: cover;
    background-repeat: no-repeat;
    background-position-x: center;
    background-image: url(./images/wywiad.png);
}
.cube-background{
    border-radius: .5rem;
    width: 560px;
    height: 315px;
    border: .125rem solid transparent;
    background: linear-gradient(white, white) padding-box,
    linear-gradient(to right, #FF851B, #001F3F) border-box;
}
.gallery{
    display: flex;
    padding: 2rem 0;
    gap: .7rem;
    flex-wrap: wrap;
    img{
        margin:0;
    }

}
.to-top{
    button{
        border-radius: 50%;
        border: .125rem solid black;
        img{
            padding: .25rem; 
        }
}
}
.active-scroll{
    margin-left: auto;
    position: sticky;
    bottom: 2rem;
    right: 2rem;
}
ul{
    list-style-type: none;
    li:first-child {
        p::before{
            content:'\🧠'; 
            font-size:1.5rem;
            margin-right: .5rem;
        }
    }
    li:last-child {
        p::before{
            content:"\🤝"; 
            font-size:1.5rem;
            margin-right: .5rem;
        }
    }
    li:nth-child(2){
       p::before{
            content:"\⏰"; 
            font-size:1.5rem;
            margin-right: .5rem;
        }
    }
    li:nth-child(3){
        p::before{
            content:"\📚"; 
            font-size:1.5rem;
            margin-right: .5rem;
        }
    }
    li:nth-child(4){
        p::before{
            content:"\🏋🏼"; 
            font-size:1.5rem;
            margin-right: .5rem;
        }
    }
    li {
        padding: .5rem;
        p{
            font-size: 1.2rem;
            color:#FF851B;
        }
    }
    }
    @media only screen and (max-width: 600px) { 
        .gallery{
            display: block;
            img:first-child, img:nth-child(2) {
                display: none;
            }

        }
        h3{
            font-size: .8rem;
            line-height: 1rem;
        }
        p{
            font-size: 1rem !important;
            text-align: center;
        }
        small{
            text-align: center;
        }
        h1{
            font-size: 1.5rem;
        }
        section{
            padding:  0 1rem;
        }
        li{
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        iframe,a{
            width: 90%;
        }
        ul{ 
            padding: 0;
        }
        #contact > .flex{
            flex-direction: column;
        }
        .cube-background{
            width: auto;
        }
       }