       @font-face {
            font-family: 'Frutiger';
            src: url('fonts/Frutiger.ttf') format('truetype');
            font-weight: normal;
        }
        @font-face {
            font-family: 'Frutiger';
            src: url('fonts/FrutigerBold.ttf') format('truetype');
            font-weight: bold;
        }
        body {
            margin: 0;
            display: flex;
            flex-direction: column;
            height: 100vh;
            background: url('images/wall.png') center center / cover no-repeat;
            font-family: 'Frutiger', Arial, sans-serif;
            color: white;
        }
		/* heres the important shit - weatherranch */
		.satlf {
            background: url('images/satlf.png') center center / cover no-repeat;
        }
		.scan1 {
            background: url('images/scan_1.png') center center / cover no-repeat;
        }
        .scan2 {
            background: url('images/scan_2.png') center center / cover no-repeat;
        }
		/* ok end of any shit you should change */
        .container {
            display: flex;
            gap: 40px;
            text-align: center;
            justify-content: center;
            align-items: center;
            flex: 1;
        }
        .box {
            flex: 1 1 300px; /* Makes the boxes responsive */
            height: 300px;
            max-width: 300px; /* Sets a max width for larger screens */
            border-radius: 20px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            text-align: center;
            color: white;
            font-size: 2rem;
            font-weight: bold;
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            background-size: cover;
            background-position: center;
        }
        .box:hover {
            transform: scale(1.05);
            box-shadow: 0px 10px 20px rgba(255, 255, 255, 0.3);
        }
        .box:active {
            transform: scale(0.98); /* Adds a "click" effect */
        }
        .box::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6); /* Darkened overlay */
            z-index: 1;
        }
        .box-content {
            position: relative;
            z-index: 2;
            text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8); /* Subtle text glow */
            line-height: 1.4; /* Improves readability */
            padding: 10px;
            max-width: 90%; /* Prevents overflow */
        }
        .box span {
            display: block; /* Forces a new line for subtitles */
            font-size: 1rem;
            font-weight: normal;
            margin-top: 10px;
            color: rgba(255, 255, 255, 0.8);
        }
        footer {
            background-color: rgba(0, 0, 0, 0.8); /* Slightly transparent background */
            color: white;
            text-align: center;
            padding: 20px 10px;
            font-size: 1rem;
        }
        footer span {
            font-family: Arial, sans-serif; /* Ensure Arial is used */
            font-style: italic;
            font-weight: bold; /* Bold Italic for "Weather Ranch" */
        }
        footer a {
            color: #00bcd4; /* A weather-themed blue */
            text-decoration: none;
            font-weight: bold;
        }
        footer a:hover {
            text-decoration: underline;
        }

        /* Weatherstar Button Styles */
        .weatherstar-button {
            display: inline-block;
            padding: 8px 16px;
            font-size: 14px;
            font-weight: bold;
            color: white;
            background-color: #007BFF; /* Blue color */
            border: none;
            border-radius: 5px;
            text-decoration: none;
            text-align: center;
            cursor: pointer;
            transition: background-color 0.3s ease, transform 0.2s ease;
        }
        .weatherstar-button:hover {
            background-color: #0056b3; /* Darker blue on hover */
            transform: scale(1.05); /* Slightly enlarge on hover */
        }
        .weatherstar-button:active {
            background-color: #004085; /* Even darker blue on click */
            transform: scale(0.95); /* Slight shrink on click */
        }