@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap');



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

body, html
{
    overflow-x: hidden;
    min-height: 100vh;
    background: linear-gradient(#2b1055, #7597de);
}

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    z-index: 1000;
}

header .logo {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    font-size: 2em;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 50px #2b1055,
        0 0 100px #2b1055,
        0 0 150px #2b1055,
        0 0 200px #2b1055,
        0 0 250px #2b1055;
}

header ul {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-wrap: wrap;
    line-height: 35px;
}

header ul li {
    list-style: none;
    margin-right: 5px;
}

header ul li a 
{
    padding: 6px;
    text-decoration: none;
    color: #fff;
    /*border-radius: 20px;*/
    transition: 0.25s;
}

header ul li a:hover,
header ul li a.active {
    background: #fff;
    color: #2b1055;
    transition: 0.25s;
}

section {
    position: relative;
    width: 100%;
    height: 100vh;
    padding: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

section::before {
    content: '';
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, #2b2230, transparent);
    z-index: 1000;
}

section img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

#temp
{
    position: relative;
    color: #fff;
    font-size: 1.5vw;
    padding-top: 500px;
    z-index:500;
    padding-left: 25px;
}

#hello {
    position: absolute;
    color: #fff;
    white-space: nowrap;
    font-size: 2.5vw;
    margin-bottom: 50px;
}

.sec {
    margin: auto;
    display: flex;
    flex-direction: column;
    position: relative;
    padding-top: 100px;
    padding-bottom: 25px;
    padding-left: 100px;
    padding-right: 100px;
    background: #2b2230;
    opacity: 1;
}

.sec h2 {
    text-align: center;
    font-size: 3.5em;
    color: #fff;
    z-index: 510;
}

.sec .description
{
    text-align: start;
}

.sec p {
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
    font-size: 1.25em;
    color: #fff;
    z-index: 150;
    padding-left: 50px;
    padding-right: 50px;
}

.sec .tire
{
    margin: auto;
    height: 1px;
    width: 60%;
    border-radius: 1.5px;
    background-color: white;
}

.sec li
{
    color: #f9c69c;
}

.brawlStars h2,
.genshinWish h2 
{
    background: -webkit-linear-gradient(#456990, #F45B69);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brawlStars p,
.genshinWish p {
    font-size: 1.5em;
    background: -webkit-linear-gradient(#f9c69c, #4e2e55);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}

.brawlText,
.genshinText
{
    flex: 1 1 auto;
}

.brawlStars,
.genshinWish 
{
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    padding-left: 50px;
    padding-right: 50px;
    padding-top: 100px;
}

#badge {
    padding-top: 10px;
    padding-left: 50px;
}

#brawlIco,
#genshinIco 
{
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    border-radius: 40px;
    z-index: 1;
}

.box {
    justify-content: center;
    position: relative;
    align-items: center;

    display: flex;
    width: 260px;
    height: 260px;
    background: rgba(0, 0, 0, 0.5);
    overflow: hidden;
    border-radius: 40px;
}

.box::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 140%;
    background: linear-gradient(#456990, #F45B69);
    animation: animate 4s linear infinite;
}

.box::after {
    content: '';
    position: absolute;
    inset: 4px;
    background: #271c2c;
    border-radius: 40px;
}

.socials
{
    padding-top: 40px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.socials i
{
    margin-top: auto;
    font-size: 1.5em;
    color: white;
    transition: 0.25s;
    padding-right: 20px;
}

.socials i:hover
{
    color: #F45B69;
    transition: 0.25s;
}


@keyframes animate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*@media screen and (max-width: 850px)
{
    .box
    {
        width: 50%;
        height: 50%;
    }
}
*/
footer
{
    position: relative;
    bottom: 0;
    min-height: 40px;
    width: 100vw;
    background-color: #271c2c;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.footer_content
{    
    justify-content: end;
    align-self: flex-end;

    padding-bottom: 5px;
    padding-left: 25px;
}

.footer_content #vk
{
    text-align: right;
}

.footer_content a
{
    text-decoration: none;
    color: white;
}

.footer_content a:hover
{
    text-decoration: underline;
}

.footer_content i,
.footer_content p
{
    font-size: .75em;
    color: #F45B69;
}

.color
{
    color: #F45B69;
}

/* privacy policy */

.PrivacyPolicy,
.Info,
.LogData,
.Cookies,
.Service,
.Security,
.Links,
.ChildrenPrivacy,
.Changes,
.Contact
{
    padding: 20px;
    background-color: #F45B69;
    z-index: 1;
}
