body {
    margin: 0;
    color: #e9e9e9;
    overflow-x: hidden;
}

.weeniebar {
	background-color: #c72121;
	width: 100%;
	height: 50px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 10px;
	padding-left: 10px;
}

.weeniebar img {
	display: block;
}
.weeniebar p {
	color: white;
	margin: 0;
	font-weight: bold;
}


h1 {
    color: black;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    text-align: center;
}

p {
    color: black;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    text-align: center;
}

.appslist {
	display: flex;
	flex-wrap: wrap; /* allows items to move to next row */
	justify-content: center; /* centers items horizontally */
	gap: 5px; /* spacing between items */
	margin-top: 20px;
}

.appcontainer {
	flex: 0 1 calc(20% - 20px); /* 5 items per row, minus the gap */
	box-sizing: border-box;
}

.appimage {
    width: 100px;
    height: 100px;
    margin: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s;
    cursor: pointer;
}

.appimage:hover {
    transform: scale(1.1);
}

.appcontainer {
    position: relative;
    display: inline-block;
}

.apppopup {
    position: absolute;
    top: 110%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: #ccc;
    padding: 10px;
    border-radius: 8px;
    width: 220px;
    text-align: left;
    font-family: 'Roboto', sans-serif;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 10;
    font-family: 'Roboto', sans-serif;
    line-height: 1.2;
}

.apppopup h2 {
    color: #fff;
    margin: 0 0 3px 0;
    font-weight: 700;
    font-size: 16px;
}

.apppopup .platforms {
    color: #aaa;
    font-size: 12px;
    margin: 0 0 5px 0;
    text-align: left;
}

.apppopup .description {
    margin: 0;
    font-weight: 400;
    color: #ccc;
    font-size: 14px;
    text-align: left;
}

.apppopup .arrow {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #333;
}

.appcontainer:hover .apppopup {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(5px);
}

.centerdiv {
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
}

.weeniebar .centerdiv {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	justify-content: center;
	align-items: center;
}

.weeniebar a {
	color: white;
	text-decoration: none;
	font-weight: bold;
	height: 50px;
	display: flex;
	align-items: center;
	padding: 0 15px;
	border-radius: 5px;
	transition: 0.3s;
}

.weeniebar a:hover {
	background-color: rgba(255, 255, 255, 0.2);
	color: #fff;
}
