body {
    margin: 0;
    padding: 0;
    background-color: #123;
    color: white;
    font-family: Arial;
}

.container {
    margin: auto;
    width: 80%;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 120px;
}

#header-links ul {
    padding: none;
    list-style: none;
}

#header-main-menu {
    display: flex;
    align-items: center;
}

#header-main-menu li {
    margin-left: 10px;
    position: relative;
}

#header-main-menu li a.header-link {
    /*padding: 2px 15px;*/
    display: block;
    text-decoration: none;
    color: #2c9fd9;
    margin-left: 7px;
}

#header-main-menu>li:last-child a {
    padding: 8px 20px;
    background-color: white;
    display: block;
    border-radius: 5px;
    color: #123;
}

.header-submenu ul {
    padding: 0;
    position: absolute;
    left: 0;
    top: 100%;
}

.header-submenu ul.ul-submenu li {
    margin: 0 !important;
    background-color: #eee;
}

.header-submenu ul.ul-submenu li a {
    text-decoration: none;
    display: block;
    padding: 5px 15px !important;
    color: black;
    /*background-color: transparent;*/
    /*background-color: red;*/
}

.header-submenu ul.ul-submenu li a:hover {
    background-color: #aaa;
}


#container-games {
	border-radius: 38% 38% 0 0;
  	overflow: hidden;
    position: relative;
    

    svg {
        width: 100%;
        z-index: 20;
        position: absolute;
    }

    video {
        position: absolute;
        top: -25%;
        left: 0;
        width: 100%;
        z-index: 1;
    }

    #games-content {
        /*position: absolute;*/
        position: relative;
        /*top: -200px;*/
        padding: 150px 0;
        /*padding-top: 200px;*/
        left: 0;
        background-color: #111e;
        z-index: 5;
        /*height: 500px;*/
        display: flex;
        align-items: center;
        justify-content: center;

        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:svgjs='http://svgjs.dev/svgjs' width='1440' height='100' preserveAspectRatio='none' viewBox='0 0 1440 100'%3e%3cg mask='url(%26quot%3b%23SvgjsMask1196%26quot%3b)' fill='none'%3e%3cpath d='M 0%2c12 C 96%2c20.8 288%2c57.6 480%2c56 C 672%2c54.4 768%2c4 960%2c4 C 1152%2c4 1344%2c45.6 1440%2c56L1440 100L0 100z' fill='rgba(17%2c 34%2c 51%2c 1)'%3e%3c/path%3e%3c/g%3e%3cdefs%3e%3cmask id='SvgjsMask1196'%3e%3crect width='1440' height='100' fill='white'%3e%3c/rect%3e%3c/mask%3e%3c/defs%3e%3c/svg%3e");
        background-repeat: no-repeat;
        background-position: bottom;
        background-size: 100%;
    }
}

.game {
    width: 200px;
    /*height: 300px;*/
    background-color: #123;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.games {
    display: flex;
    flex-wrap: nowrap;
    grid-gap: 20px;
}


.game .btn {
    display: block;
    background-color: #157;
    padding: 10px;
    text-align: center;
    color: white;
    text-decoration: none;
    border-radius: 9px;
    margin: 7px;
}

.game img {
    width: 180px;
    height: 180px;
    margin: 10px;
}

.game h3 {
    margin: 3px;
}