/* Cool background I made in a previous personal project! */
html{
    font-family: "Figtree", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    background: url('../images/tiny_hachi.png'), linear-gradient(180deg,rgba(123, 171, 196, 1) 42%, rgba(255, 255, 255, 1) 100%);
    background-position: top left, center;
    animation: mymove 50s linear infinite;
    background-repeat: repeat, no-repeat;
    background-attachment: fixed, fixed;
    background-size: auto, cover;
    margin: 0;
    padding: 0;
}

@keyframes mymove {
    0% {background-position: top left, center;}
    100% {background-position: center, center;}
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(123, 171, 196, 0.3);
    max-width: 900px;
    text-align: center;
}

h1 {
    color: #4a7ba7;
    font-size: 2.5em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

p {
    color: #333;
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
}

h2 {
    color: #4a7ba7;
    font-size: 1.5em;
    margin-top: 30px;
    margin-bottom: 20px;
}

ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

li a {
    color: #fff;
    background: linear-gradient(135deg, #4a7ba7 0%, #7babcc 100%);
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-weight: 600;
    display: inline-block;
}

.images-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
}

img {
    max-width: 50%;
    height: 75%;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}