        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            height: 100vh;
            background: radial-gradient(circle, #8c0000, #300000);
            display: flex;
	    flex-direction: column;
        }
        .wrapper {
            display: flex;
            flex-direction: column;
            gap: 20px;
            width: 600px;
	    margin: 0 auto;
	    flex: 1;
        }
        .welcome-box {
            background: #ffffff;
	    background-color: rgba(1,1,1,0);
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(1,1,1,0.25);
            text-align: center;
            width: 270px;
            margin: 0 auto;
	    margin-top: 10px;
        }
        .menu-box {
            background: #ffffff;
            padding: 5px;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.25);
            display: grid;
            text-align: center;
	 }
        .links-box {
            background: #ffffff;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.25);
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
            text-align: center;
        }
        .link-item a {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            color: #222;
        }
        .link-item img {
            width: 120px;
            height: 120px;
            border-radius: 15px;
            object-fit: cover;
            box-shadow: 0 2px 6px rgba(0,0,0,0.3);
        }
        .label {
            margin-top: 10px;
            font-size: 16px;
        }
        .label-menu {
            margin-top: 0px;
            font-size: 16px;
        }
	footer {
	    text-align: center;
	    color: white;
	    padding: 20px;
	}
