* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: KoodakB;
}

body {
    background-color: black;
    /* background-color: bisque; */
    text-align: center;
    color: white;

}

#homepage {
    width: 100%;
    padding: 20px;
    margin: 70px auto;
    text-align: center;
}
#loginPage{
    width: 90%;
    padding: 20px;
    margin: 80px auto;
    text-align: center;
}
#loginPage *{
    width: 70%;
    margin: auto;
    height: 40px;
    text-align: center;
}
#holoriPage{
    width: 90%;
    padding: 20px;
    margin: 80px auto;
    text-align: center;
}
#holorgramPage{
    width: 90%;
    padding: 20px;
    margin: 80px auto;
    text-align: center;
}


.icons {
    width: 80px;
    opacity: 0.7;
    animation-name: icons_rotate;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

.link_icons {
    /* background-color: white; */
    float: left;
    text-align: center;
    text-decoration: none;
    display: block;
    margin: 4px;
    padding: 4px;
    color: white;
    border-radius: 15px;
    /* border: 1px solid black;
    box-shadow: 0 5px black; */
    /* background-color: bisque; */
    transition: 0.2s;
    min-width: 140px;
    width: 15%;
    max-width: 180px;
    height: 150px;
    overflow: hidden;
    padding-top: 8px;
    font-size: 1.1pc;

}
.endlink_icons {
    float: left;
    text-align: center;
    display: block;
    margin: 4px;
    padding: 4px;
    width: 100%;
    height: 150px;
    overflow: hidden;
    padding-top: 8px;
    font-size: 1.1pc;

}
.link_icons:hover {
    padding-top: 4px;
    background-color: #11ABFE;
    /* background-color: bisque; */
    /* transform: translateY(4px); */
    box-shadow: 0 1px black;
    font-size: 1.3pc;
    color: black;

}

.link_icons:hover .icons {
    width: 90px;
    opacity: 1;
    animation-play-state: paused;

}

#phoneMenu{  
    position: fixed;
    bottom: 0;
    height: 50px;
    width: 100%;
    background-color: #11ABFE;
    z-index: 100;
    border-top: 2px solid black;
    display: grid;
    grid-template-columns: auto auto auto;
}

#topMenu{
    position: fixed;
    top: 0;
    height: 50px;
    width: 100%;
    background-color: #11ABFE;
    z-index: 100;
    border-bottom: 2px solid black;
    display: grid;
    grid-template-columns: auto 60%;
    padding: 4px;
    text-align: center;
}
.itemTopMenu{
    padding-top: 7px;
    font-size: 1.2pc;
}
.itemPhoneMenu{

    font-size: 1.2pc;
    border: 1px solid bisque;
    color: black;
}
.itemPhoneMenu a{
    padding-top: 8px;
    text-decoration: none;
    color: black;
    display: block;
    height: 100%;
    width: 100%;
}
.itemPhoneMenu:hover{
    font-size: 1.3pc;
    border: 1px solid bisque;
    background-color: bisque;
    color: black;
}
.btn{
    background-color: #11ABFE;
    font-size: 1.3pc;
    border-radius: 15px;
    padding: 5px;
    box-sizing: content-box;
    border: none;
    box-shadow: 1px 4px bisque;
}
.btn:hover{
    background-color: bisque;
    font-size: 1.4pc;
}









/* ---------------------------  mobile size --------------------------- */

@media screen and (max-width: 400px) {

    #holorgramPage{
        width: 100%;
        padding: 10px;
    }
    .link_icons {
        /* background-color: white; */
        float: left;
        text-align: center;
        text-decoration: none;
        display: block;
        margin: 5px;
        padding: 2px;
        transition: 0.2s;
        min-width: 95px;
        height: 130px;
        overflow: hidden;
        padding-top: 5px;
        font-size: 0.9pc;
    
    }
    .link_icons:hover {
        padding-top: 2px;
        font-size: 1pc;
    }
    
    .link_icons:hover .icons {
        width: 80px;
        opacity: 1;
        animation-play-state: paused;
    
    }


}





/* ---------------------------  desktop size --------------------------- */

@media screen and (min-width: 800px) {

    #phoneMenu{  
        position: fixed;
        bottom: 10px;
        height: 50px;
        width: 50%;
        left: 25%;
        background-color: #11ABFE;
        z-index: 100;
        border-top: 2px solid black;
        display: grid;
        grid-template-columns: auto auto auto;
        border-radius: 60px;
        overflow: hidden;
        opacity: 0.7;
    }
}






/* ---------------------------  Animations --------------------------- */

@keyframes icons_rotate {
    from {
        rotate: -5deg;
    }

    to {
        rotate: 5deg;
        scale: 1.1;
    }
}











/* ---------------------------  fonts --------------------------- */
@font-face {
    font-family: KoodakB;
    src: url(fonts/KoodakB.ttf);
}