@import url("https://fonts.googleapis.com/css2?family=Poppins");
*{
    margin: 0;
    padding: 0;
    font-family: Poppins, sans-serif;
    user-select: none;
    -webkit-user-drag: none;
    outline: none;
}
body{
    min-height: 100vh;
    background: url("../icons/kali-linux-wallpaper.png"); /* linear-gradient(#595999, #125258)*/
    display: flex;
    background-size: cover;
    justify-content: center;
    align-items: center;
}

.folders{
    width: 300px;
    height: 200px;
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    text-decoration: none;
    overflow: hidden;
}
.folders ul li a .icon ion-icon{
    color: rgba(255, 255, 255, 0.75);
    font-size: 3em;
}
.folders ul li:nth-child(2) a .icon ion-icon{
    position: relative;
    left: 8px;
}
.folders ul li a{
    position: relative;
    text-decoration: none;
}
.folders ul li a i{
    height: 10px;
    font-style: normal;
    position: relative;
    font-size: 12px;
    right: 45px;
    top: 10px;
    color: white;
}
.folders ul li:nth-child(2){
    position: relative;
    top: 25px;
}
.folders ul li:nth-child(2) a i{
    top: 15px;
    right: 52px;
}

footer{
    bottom: 0px;
    width: 100%;
    height: 0.5px;
    background: rgba(0, 0, 0, 0.0);
    position: absolute;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    transition: 0.3s;
    overflow-y: hidden;
}
footer:hover{
    background: rgba(0, 0, 0, 0.5);
    height: 48px;
}
footer .left{
    width: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
}
footer .left a .icon{
    width: 50px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
}
footer .left a .icon ion-icon{
    font-size: 2.2em;
    color: white;
    transition: 0.3s;
}
#apps-button{
    position: relative;
    top: 26px;
    transition: 0.3s;
    background-image: url("../icons/kali-apps-button.svg");
    background-size: contain;
}
#apps-button:hover, #terminal:hover{
    transform: scale(1.08);
}
footer .left a .icon ion-icon:hover{
    font-size: 2.6em;
    color: white;
}
#right{
    width: 350px;
    height: 50px;
    position: absolute;
    bottom: 100px;
    left: 25px;
}
#right hint{
    font-size: 1.25em;
    color: white;
}

.home-card{
    width: 175px;
    height: 80px;
    position: absolute;
    display: flex;
    flex-direction: column;
    text-align: center;
    border-radius: 5px;
    background: rgba(255,255,255,0.4);
    text-transform: capitalize;
    justify-content: center;
    left: 40px;
    bottom: 170px;
    opacity: 0.3;
    transform: scale(1.12);
    transition: 0.3s;
}
.home-card:hover,.home-card:focus{
    opacity: 1;
}
.home-card a{
    text-decoration: none;
}
.home-card home{
    color: lightgreen;
    font-size: 1.2em;
}
.home-card home:nth-child(2){
    color: lightblue;
    font-size: 1.75em;
}
