@import url('https://fonts.googleapis.com/css2?family=Stack+Sans+Notch:wght@200..700&display=swap');

body {
    background-color: #0d1b2a;
    color: #e6e8eb;
    font-family: "Stack Sans Notch", sans-serif;
}

.central-div {
    min-height: 98vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

nav {
    margin-top: 40px;
    margin-bottom: 60px;
    align-items: center;
    text-align: center;
    font-size: 50px;
}

h2 {
    margin: 0;
    font-size: 50px;
    text-align: center;
    flex: 1;
}

.buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
}

.buttons a {
    background: #e6e8eb;
    padding: 20px;
    border-radius: 20px;
    width: 180px;
    height: 180px;
    box-shadow:
        0 4px 12px rgba(255, 255, 255, 0.15),
        0 0 10px rgba(255, 255, 255, 0.12);
    transition: transform 0.5s ease, box-shadow 0.2s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.buttons a:hover {
    transform: translateY(-6px);
    box-shadow:
        0 8px 20px rgba(255, 255, 255, 0.25),
        0 0 15px rgba(255, 255, 255, 0.20);
}

.buttons img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

h3 {
    text-align: center;
    font-size: 25px;
}

.decoration {
    margin-top: auto;
    width: 100vw;
    max-width: none;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-sizing: border-box;
}

#ollama_image {
    height: 200px;
    object-fit: contain;
    opacity: 0.75;
}

#netsquare {
    height: 60px;
    opacity: 0.9;
}
