/*
CloudOS Design Language.
This css file should be applied to all built in pages.
Use this code to apply the css file.
<link rel="stylesheet" href="/style.css">
*/
body {
    background-color:rgb(41, 41, 41);
    color:rgb(214, 214, 214);
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
.frameContainer {
    padding:20px;
    background-color:rgb(214, 214, 214);
    width:fit-content;
    color:rgb(41, 41, 41);
    border-radius:25px;
}
a {
    color:powderblue;
}
.gridContainer {
    display:grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    background-color:rgb(51,51,51);
    gap:50px; 
    padding:20px;  
}
.appCard {
    text-align:center;
    background-color:rgb(41, 41, 41);
    padding:10px;
}
iframe {
    background-color: #292929;
}