@font-face {
    font-family: valorant;
    src: url(Valorant\ Font.ttf);
 }

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

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'MuseoModerno', cursive;
    color: #fff;
}

body {
    /* width: 100%;
    height: 100vh; */
    /* background-color: #1a1a1a; */
    background-image: linear-gradient(#1a1a1a, red);
    
}

.h1 {
    color: #fff;
    text-align: center;
    margin: 50px;
    font-size: 50px;
}

.container {
    padding: 5px;
    background: linear-gradient(transparent, transparent);
    background-size: 100% 100%;
    
}

.container:hover {
    background: linear-gradient(#273753, red);
}

.container .box {
    filter: grayscale(1);
    background-size: 100% 100%;
    display: flex;
    justify-content: center;
    transition: 0.5s;
    
}

.container .box:hover {
    filter: grayscale(0);
    background-size: 100% 100%;
    display: flex;
    justify-content: center;
    transition: 0.5s;
}

.container .box img {
    margin: 20px;
    transition: 0.5s;
    position: relative;
    z-index: 1;
}

.container .box:hover img {
    scale: 1.3;
}

.cards {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;

}

.cards .container {
    flex: 1 1 300px;
    margin: 10px;
    border: 2px solid red;
    transition: 0.5s;
}

.cards .container:hover {
    flex: 1 1 300px;
    margin: 10px;
    border: 2px solid red;
    box-shadow: 0px 0px 300px 60px red;
    transition: 0.5s;
}

img {
    width: 100%;
    height: 100%;
}


.webContainer {
    position: relative;
    z-index: 1000;
}

.webContainer nav {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    display: flex;
    justify-content: center;
}

nav .logo {
    width: 40%;
}

nav .menu {
    display: flex;
    width: 40%;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
}

.menu ul {
    list-style: none;
}

ul li {
    list-style-type: none;
}

.button {
    line-height: 65px;
}

.button button {
    padding: 12px 30px;
    background: var(--maincolor);
    border: none;
    outline: none;
    color: #FFF;
    font-family: 'Poppins';
    font-weight: 500;
    font-size: 14px;
    border-radius: 4px;
}

.logo p {
    font-family: valorant;
    font-size: 24px;
    color: #ff4566;
    font-weight: lighter;
    line-height: 65px;
    margin-left: 40px;
    text-transform: uppercase;
}

.logo i {
    font-family: valorant;
    font-size: 24px;
    color: #fff;
    font-weight: lighter;
    line-height: 65px;
    margin-left: 40px;
    text-transform: uppercase;
}


.primaryBtn {
    padding: 15px 56px;
    margin-right: 40px;
    background: #ff4566;
    outline: none;
    border: none;
    font-size: 16px;
    color: #FFF;
    font-weight: 700;
    font-family: valorant;
    text-decoration: none;
    text-transform: uppercase;
    transition: .5s;
}

.primaryBtn:hover {
    background: #fff;
    color: #ff4566;
    transition: .5s;
}

.square {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #0f1923;
    clip-path: circle(16% at bottom left);
}