﻿/* Site settings */
body {
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    color: #ffffff;
    font-family: "Segoe UI", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Content */
.container {
    background-color: #3a3a3a;
    color: #ffffff;
    text-align: center;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    max-width: 600px;
    /*transition: all 0.3s ease;*/
}

/* Content Hover */
/*
.container:hover {
    background-color: #4a4a4a;
    transform: scale(1.03);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.5);
}
*/

.footer {
    color: #ccc;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.9rem;
    border-top: 1px solid #ccc;
}

.footer a {
    color: #1496ee;
    text-decoration: none;
    font-weight: bold;
}

.footer a:hover {
    text-decoration: underline;
}