@import url('https://fonts.googleapis.com/css2?family=Alumni+Sans+Collegiate+One:ital@1&family=Fahkwang:ital,wght@1,200&display=swap');

* {
    font-family: 'Alumni Sans Collegiate One', sans-serif;
    font-family: 'Fahkwang', sans-serif;
    list-style-type: none; /* Remove bullets */
    padding: 0; /* Remove padding */
    margin: 0; /* Remove margins */
}
body {
    background: bisque;
    display: flex;
    gap: 5px;
    margin: 5px;
    max-width: 100%;
    overflow-x: hidden;
}
@media only screen and (max-width: 412px) {
    body {
        background: bisque;
        display: grid;
        gap: 5px !important;
        margin: 5px !important;
        overflow-x: hidden !important;
        grid-template-columns: repeat(3,1fr) !important;
        grid-template-rows: repeat(auto-fill,150px) !important;
        overflow:scroll !important;
    }
    .content {
        width: 412px !important;
        min-height: 100% !important;
        min-height: 100% !important;
        overflow-x: warp !important;
        background: white !important;
        z-index: 1 !important;
    }
    
  }


.icon-app {
    width: 130px;
    height: 150px;
    border-radius: 10px;
    font-size: 3rem;
    justify-content: center;
    text-align: center;
    border: 1px solid rgb(49, 10, 10);
    cursor: pointer;
    align-items: center;
    padding: 2px;
    background: rgb(171, 167, 175);
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;

}
.icon-app:hover {
    transform: scale(1.1);
    transition: 0.1s;
}
.box-icon {
   background: rgb(240, 238, 236);
   border-radius: 10px;
   padding: 10px;
   height: 100%;

}
.fa-tiktok {
    font-size: 2rem;
}
.fa-house-flag {
    color: rgb(66, 80, 212);
}
.app-name {
    width: 100%;
    font-size: 1.1rem;
    border-radius: 5px;
}

.fa-solid i {
    animation: wiggle 2s linear infinite;
}
.content {
    width: 100%;
    min-height: 100%;
    position: absolute;
    overflow-x: hidden;
    top: 0;
    left: 0;
    background: white;
    z-index: 1;
}
.head_content {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    background: gainsboro;
    height: 30px;
    padding: 5px;
    vertical-align: middle;
    text-align: center;
}
.head_content span {
    padding-left: 5px;
}
.fa-x {

    font-size: 1.5rem;
    color: red;
    
}
.loader {
    border: 30px solid #f3f3f3;
    border-radius: 50%;
    border-top: 30px solid #1e0ad3;
    width: 220px;
    height: 220px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
    position: absolute;
    justify-content: center;
    left: 50%;
    top: 50%;
    z-index: 100000;
  }
  
  /* Safari */
  @-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
