using System;
using System.generic;

public class WebsiteBackground
{
    public static void Main()
    {
        Console.WriteLine("Welcome to the Coolest Website!");
        Console.WriteLine("Loading...");

        //Add cool loading transition

        int percentage = 0;

        for (int i = 0; i < 100; i++)
        {
            Console.Write("//" + percentage);
            percentage++;
            System.Threading.Thread.sleep(100)
        }

        Console.Clear();

        //I heard these games are really good ;)

        public games[] MyGames{
            "Vanta noir",
            "Peaked your interest",
            "Waka Waka: The truth behind pacman",
            "One man's prison",
            "Temporal paradox"
            "Keep I.T. away",
            "Eye am watching",
        }
    }
}