*{
margin: 0;
    padding: 0;
    box-sizing: border-box;

}
html{
    font-size: 40px;
    scroll-behavior: smooth;
}

section{
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
#sec-1{
    background-color: rgba(106, 163, 227, 0.93);
    position: relative;

}
#sec-2{
    background-color: rgba(106, 163, 227, 0.93);
}
#sec-3{
    background-color: rgba(106, 163, 227, 0.93);
}
#sec-4{
    background-color: rgba(106, 163, 227, 0.93);
}
#sec-5{
    background-color: rgba(106, 163, 227, 0.93);
}
#sec-6{
    background-color: rgba(106, 163, 227, 0.93);
}
#sec-7{
    background-color: rgba(106, 163, 227, 0.93);
}
.scroll-down{
height: 50px;
width: 30px;
border: 2px solid #ffffff;
position: absolute;
left: 50%;
transform: translateX(-50%);
bottom: 20px;
border-radius: 50px;
cursor: s-resize;
}
.scroll-down::before,
.scroll-down::after{
    content:'';
    position: absolute;
    top: 10%;
    left: 50%;
    border: 2px solid #ffffff;
    height: 10px;
    width: 10px;
    transform: translate(-50%, -90%) rotate(45deg);
    border-top: transparent;
    border-left: transparent;
    animation: scroll-down 1s ease-in-out infinite;
}
.scroll-down::after{
    top: 20%;
    animation-delay: .2s;
}

@keyframes scroll-down {
    0%{
        opacity: 0;
    }
    30%{
        opacity: 1;
    }
    60%{
        opacity: 1;
    }
    100%{
        opacity: 0;
        top: 90%;
    }
}

.text {
    color: white;
    font-family: 'Bai Jamjuree', sans-serif;
    text-align: center;
}
.navSiteStart {
    color: white;
    font-family: 'Bai Jamjuree', sans-serif;
    font-size: 20px;
    text-align: center;
}
body{
    background-color: rgba(106, 163, 227, 0.93);
}

.titleDesc {
    font-family: 'Bai Jamjuree', sans-serif;
    color: rgb(52, 42, 129);
    font-size: 20px;
    text-align: center;
}

noscript{
    background-color: #ffc400;
    font-family: 'Bai Jamjuree', sans-serif;
}
a {
    text-decoration: none;
    color: rgb(52, 42, 129);
    font-family: 'Bai Jamjuree', sans-serif;
    cursor: pointer;
}

.footer {
    color: #fff;
    font-family: 'Bai Jamjuree', sans-serif;
    text-align: center;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20px;
    top: 90%;

}
.Avatar{
    border-radius: 50%;
    border-style: outset;
    border-color: rgb(52, 42, 129);
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}
.AboutMe{
    color: white;
    font-family: 'Bai Jamjuree', sans-serif;
    font-size: 20px;
    text-align: center;
    margin-left: 30px;
    margin-right: 30px;
}
.quote{
    color: white;
    font-family: 'Bai Jamjuree', sans-serif;
    text-align: center;
    font-size: 25px;
    margin: 7px;

}
.quotecont{
    /*border-radius: 35px;
    border: 3px rgb(52, 42, 129) solid;
    margin-left: 5px;
    margin-right: 5px;
    background-color: #4e9fba;*/

}
.banner{
    width: 50vw;
    text-align: center;
    border-radius: 35px;
    border-style: outset;
    border-color: rgb(52, 42, 129);
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 15px;
    cursor: pointer;


}

.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 20px;
    color: white;
    background: rgb(106, 163, 227);
    border-color: rgb(52, 42, 129);
    cursor: pointer;

}
.scroll-to-top:hover{
    background: rgba(80, 121, 168, 0.93);
    transition: 0.5s;
    cursor: pointer;
}


.Avatar{
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}
.FmgroupLogo{
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}
.GameLogo{
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 20vw;
    border-radius: 10%;
    border-style: outset;
    border-color: rgb(52, 42, 129);
}
.Animbutton {
    width: 220px;
    height: 50px;
    border: none;
    outline: none;
    color: #fff;
    background: #111;
    cursor: pointer;
    z-index: 0;
    border-radius: 10px;
    font-family: 'Bai Jamjuree', sans-serif;
    font-size: 75%;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}
.Animbutton:before {
    content: '';
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    position: absolute;
    top: -2px;
    left:-2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity .3s ease-in-out;
    border-radius: 10px;
}

.Animbutton:active {
    color: #000000;
}

.Animbutton:active:after {
    background: transparent;
}

.Animbutton:hover:before {
    opacity: 1;
}

.Animbutton:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgb(95, 144, 194);
    left: 0;
    top: 0;
    border-radius: 10px;
}
@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}
.socials {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.socials i {
    width: 50px;
    height: 50px;
    margin: 10px;
    transition: opacity 0.5s ease-in-out;
}
.footer1{
    font-family: 'Bai Jamjuree', sans-serif;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-size: 25px;
}

.stats {
    display: flex;
    align-items: center;
    align-content: space-evenly;
    justify-content: center;
    flex-wrap: wrap;
    width: 95%;
    position: relative;
}

.stats div{
    text-align: center;
}
.stats div i{
    width: 50px;
    height: 50px;
    margin: 10px;
}