@import url("fonts.css");

*{
    margin: 0px;
    padding: 0px;
    user-select: none;
}

body{
    overflow: hidden;
}

table{
    display: inline;
}

tr{
    display: flex;
    flex-direction: row;
    gap: 30px;
}

td{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

p{
    font-family: PixeloidSans;
    color: white;
    font-size: 2.3vh;
    padding-left: 0.5rem;
}

#outersection{
    position: absolute;
    top: 0;
    width: 100%;
    height: 10%;
    padding: 5px;
    background-color: #C0C7C8;
    box-sizing: border-box;
    overflow: hidden;
}

#outersection p{
    color : black;
    display: inline;
}

#outersection p.bluebg:hover{
    background-color: blue;
    color: white;
}

#subouter{
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    background-color: #87888F;
    border-top: 1px solid #000000;
    border-bottom: 1px solid #000000;
}

#innersection1{
    align-items: center;
    display: flex;
}


/* #innersection{
    display: flex;
    width: 100%;
    height: 60%;
    background-color: #87888F;
    box-sizing: border-box;

} */

#body{
    position: absolute;
    top: 10%;
    bottom: 5%;
    width: 100%;
    border: 10px solid #C0C7C8;
    /* outline:5px solid #C0C7C8; */
    /* height: 100vh; */
    color:black;
    box-sizing: border-box;
}

#body p{
    color: black;
    font-size: 0.7rem;
}

#crossbutton{
    margin-left: auto;
    width: 3vh;
    display: inline;
    padding: 5px;
}

#crossbutton:hover{
    cursor: pointer;
}

#mycomputer{
    padding-left : 5px;
    width: 3vh;
}


#notepad {
    padding-top: 20px;
    width: 7vh;
    transition: 0.2s;
}

#notepad:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 0.2rem rgb(0, 0, 0));
}

#folderfooter{
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 5%;
    background-color: #C0C7C8;
    box-sizing: border-box;
}

footer{
    position: absolute;
    width: 100%;
    bottom: 15px;
    text-align: center !important;
    font-family: PixeloidSans;
    padding: 0px;
    margin: 0px;
}

footer p{
    color: black;
    font-size: 0.7rem;
}

@media (max-width: 400px) {

    #crossbutton{
        width: 6vw;
    }
  
}