body{
background:black;
color:white;
font-family:monospace;

display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
min-height:100vh;
margin:0;
}

h1{
text-align:center;
}

.grid{
display:grid;
grid-template-columns:repeat(2, 200px);
gap:30px;
justify-content:center;
margin-top:40px;
}

.folder{
display:flex;
justify-content:center;
align-items:center;

width:200px;
height:130px;

background:#ffcc00;
color:black;

cursor:pointer;
text-decoration:none;

font-size:16px;
text-align:center;

transition:0.2s;
}

.folder:hover{
background:#ffd633;
transform:scale(1.05);
}

.broken{
background:#333;
color:#777;
}

.broken:hover{
background:#222;
}