@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

html,
body {
    width: 100%;
    height: 100%;
    font-family: "Montserrat";
}

.wrapper {
    width: 100%;
    height: 100%;
}

.container {
    height: 100%;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;

    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.center {
    width: 100%;
    height: 100%;
}

.item-game {
    padding: 5px;
    border-radius: 12px;
    margin-top: 20px;
    /* -webkit-border-image: -webkit-gradient(linear, left top, left bottom, from(#00abeb), to(#fff), color-stop(0.5, #fff), color-stop(0.5, #66cc00)) 21 30 30 21 repeat repeat; */
    animation: animation-border-img 1s ease-in-out infinite;
}

.left .item-game:nth-child(1),
.right .item-game:nth-child(1) {
    margin-top: 0;
}

.item-game img {
    background-size: contain;
    background-repeat: no-repeat;
    width: 200px;
    height: 250px;
    background-color: #fff;
    border-radius: 12px;
    border: 2px solid #00abeb;
    /* background: url(../images/bg.png) no-repeat center bottom; */
}

@keyframes animation-border-img {
    0% {
        -webkit-border-image: -webkit-gradient(linear, left top, left bottom, from(#00abeb), to(#fff), color-stop(0.5, #fff), color-stop(0.5, #66cc00)) 21 30 30 21 repeat repeat;
    }

    100% {
        -webkit-border-image: -webkit-gradient(linear, left top, left bottom, from(#eb4300), to(#fff), color-stop(0.5, #fff), color-stop(0.5, #cc00be)) 21 30 30 21 repeat repeat;
    }
}

.bg {
    position: absolute;
    /* background-image: url(../images/bg.jpg); */
    width: 100%;
    height: 140%;
    background: repeating-linear-gradient(334deg, #d4f2ff, #badcef 50%);
}

.img-text {
    padding: 50px;
    margin: 0 auto;
}

.text-content {
    padding: 50px;
}

.text-content h1 {
    text-align: center;
    font-size: 60px;
    font-weight: bold;
    color: #e6442a;

    margin: 0 auto;
    line-height: 100px;

    animation: animation-text 0.5s ease-in-out infinite;
}

@keyframes animation-text {
    0% {
        text-shadow: 0 1px 0 #ccc,
            0 2px 0 #c9c9c9,
            0 3px 0 #bbb,
            0 4px 0 #b9b9b9,
            0 5px 0 #aaa,
            0 6px 1px rgba(0, 0, 0, .1),
            0 0 5px rgba(0, 0, 0, .1),
            0 1px 3px rgba(0, 0, 0, .3),
            0 3px 5px rgba(0, 0, 0, .2),
            0 5px 10px rgba(0, 0, 0, .25),
            0 10px 10px rgba(0, 0, 0, .2),
            0 20px 20px rgba(0, 0, 0, .15);
    }

    100% {

        text-shadow: 0 1px 0 #fff,
            0 2px 0 #e5e5e5, 0 3px 0 #dfdfdf,
            0 4px 0 #e1e1e1, 0 5px 0 #c5c5c5,
            0 6px 1px rgb(255 255 255 / 10%),
            0 0 5px rgb(255 255 255 / 10%),
            0 1px 3px rgb(255 255 255 / 30%),
            0 3px 5px rgb(255 255 255 / 20%),
            0 5px 10px rgb(255 255 255 / 25%),
            0 10px 10px rgb(0 0 0 / 20%),
            0 20px 20px rgb(0 0 0 / 15%);
    }
}


.img-logo {
    width: 600px;
    margin: 0 auto;
    margin-top: 50px;
    padding: 20px 0 0;
    /* background-color: #fff; */
    border-radius: 12px;
    /* box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset; */
}

.group-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 50px;
}

.group-button a:not(:first-child) {
    margin-left: 30px;
}

.btn {
    width: 300px;
    height: 70px;
    background-color: #e6442a;
    border: 2px solid #fff;
    text-align: center;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 24px;
    font-weight: bold;
    color: #fff;

    /* box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px; */

    border-radius: 4px 18px 4px 18px;
}

.sign-up {}

.sign-in {}

.btn a {
    display: block;
}

@media screen and (max-width: 1023.98px) {
    .text-content h1 {
        font-size: 40px;
    }
}

@media screen and (max-width: 767.98px) {
    .img-logo {
        width: 80%;
    }

    .text-content {
        padding: 20px;
    }

    .group-button {
        padding: 20px;
        width: 100%;
    }

    .group-button a {
        width: 50%;
    }

    .btn {
        width: 100%;
        font-size: 20px;
        height: 60px;
    }

    .text-content h1 {
        font-size: 26px;
        line-height: 50px;
    }
}