/* CSS Variables */
:root {
    --background: 224 71.4% 4.1%;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.5;
    color-scheme: dark;
}

body {
    background-color: hsl(var(--background));
    color: hsl(var(--background));
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main.landing-container {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Container */
.container {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* App Link */
.app-link {
    height: 200px;
    width: 200px;
    display: block;
    text-decoration: none;
    transition: 0.5s ease;
}

.app-link:hover {
    transform: scale(1.02);
}

.app-link img {
    width: 200px;
    height: auto;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.app-link:hover img {
    transform: scale(1.02);
}