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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background: rgb(25,25,25);
    color: #e5e5e5;
    font-family: 'Josefin Sans', sans-serif;
    margin: 0;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

::-webkit-scrollbar {
    width: 8.5px;
    height: 8.5px;
}

::-webkit-scrollbar-button {
    width: 0px;
    height: 0px;
}

::-webkit-scrollbar-track {
    background: rgb(40,40,40);
}

::-webkit-scrollbar-thumb {
    background: rgb(15,15,15);
}

::-webkit-scrollbar-corner {
    background: transparent;
}

nav {
    position: fixed;
    padding: 0 5%;
    width: 90%;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
}

nav.colored {
    border-bottom: 1px solid rgb(30,30,30);
}

nav h2 {
    margin: 0;
    font-size: 16px;
    cursor: pointer;
}

nav ul {
    display: flex;
    list-style-type: none;
    gap: 25px;
    font-size: 14px;
}

nav ul li {
    cursor: pointer;
}

nav ul li a {
    display: inline-block;
    position: relative;
    padding: 5px;
    color: #e5e5e5;
    text-decoration: none;
}

nav ul li a:after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: #0984e3;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

nav ul li a:hover:after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

header {
    height: 100vh;
    width: 90%;
    padding: 0 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column-reverse;
    gap: 50px;
}

header div {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    gap: 25px;
}

header div h1 {
    font-size: 40px;
    margin: 0;
    text-align: center;
}

header div p {
    font-size: 15px;
    text-align: center;
    margin: 0;
}

header div a {
    padding: 20px 40px;
    background: #0984e3;
    color: #e5e5e5;
    text-decoration: none;
    border-radius: 5px;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.5s;
    border: 1px solid transparent;
}

header div a:hover {
    border: 1px solid #00a0ff;
    background: transparent;
    color: #00a0ff;
}

header img {
    width: 50%;
}

.content {
    padding: 100px 5%;
}

.content.dark {
    background: rgb(20,20,20)
}

.title {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
    padding: 50px 0;
}

.title h2 {
    font-size: 30px;
    margin: 0;
    text-align: center;
}

.title p {
    font-size: 16px;
    margin: 0;
    text-align: center;
}

.video.center {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.video.center video {
    width: 70%;
    border-radius: 5px;
}

.arguments {
    display: grid;
    align-items: flex-start;
    justify-content: center;
    gap: 50px;
    grid-template-columns: 100%;
}

.arguments.grid2 {
    padding: 50px 0 0 0;
    grid-template-columns: 100%;
}

.arguments>div {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.arguments i {
    color: #00a1ff;
    font-size: 40px;
    padding: 15px;
    border-radius: 50%;
    background: rgb(18,18,18);
}

.content.dark .arguments i {

    background: rgba(0,161,255,0.1);
}

.arguments h3 {
    font-size: 25px;
    margin: 25px 0 12.5px 0;
    text-align: center;
}

.arguments p {
    font-size: 16px;
    margin: 0;
    text-align: center;
}

.cta_container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 75px 0 0 0;
}

.cta {
    padding: 20px 60px;
    background: #0984e3;
    color: #e5e5e5;
    text-decoration: none;
    border-radius: 5px;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.5s;
    border: 1px solid transparent;
}

.cta:hover {
    border: 1px solid #00a0ff;
    background: transparent;
    color: #00a0ff;
}

.titre {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 50px;
    padding: 0 0 75px 0;
}

.titre img {
    width: 300px;
}

.titre>div {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.titre h2 {
    font-size: 30px;
    margin: 0;
    text-align: center;
}

.titre p {
    font-size: 16px;
    margin: 0;
    text-align: center;
}

.social_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 0 0 40px 0;
}

.social_btn a{
    border-radius: 10px;
    padding: 20px 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 5px;
    color: #FFFFFF;
    font-size: 15px;
    box-shadow: 1px 1px 10px rgba(0,0,0,0.3);
    transition: 0.5s ease;
    cursor: pointer;
}

.social_btn img{
    color: #3C83FF;
    height: 25px;
    filter: invert(100%) sepia(0%) saturate(7467%) hue-rotate(294deg) brightness(110%) contrast(110%);
}

.social_btn a.discord {
    background: rgba(114,137,218,0.8);
}

.social_btn a.discord:hover {
    background: rgba(114,137,218,1);
}

.social_btn a.youtube {
    background: rgba(205,32,31,0.8);
}

.social_btn a.youtube:hover {
    background: rgba(205,32,31,1);
}

.social_btn a.github {
    background: rgba(51,51,51,0.8);
}

.social_btn a.github:hover {
    background: rgba(51,51,51,1);
}

.social_btn a.twitter {
    background: rgba(0,172,237,0.8);
}

.social_btn a.twitter:hover {
    background: rgba(0,172,237,1);
}

.social_btn a.linkedin {
    background: rgba(0,119,181,0.8);
}

.social_btn a.linkedin:hover {
    background: rgba(0,119,181,1);
}

.contact {
    background: rgba(0,161,255,0.4);
    padding: 100px 5%;
}

.contact form {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    gap: 25px;
    width: 60%;
    margin: 0 0 0 20%;
}

.contact form>div {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    gap: 5px;
}

.contact input, .contact textarea {
    width: calc(100% - 20px);
    padding: 10px;
    box-shadow: 1px 1px 10px rgba(0,0,0,0.1);
    border: none;
    background: #e5e5e5;
    border-radius: 5px;
    outline: none;
    transition: none;
    min-width: calc(100% - 20px);
    max-width: calc(100% - 20px);
    font-family: 'Josefin Sans', sans-serif;
    font-weight: bold;
    font-size: 16px;
}

.contact textarea {
    min-height: 100px;
}

.contact button {
    margin: 15px 0 0 0;
    background: #002d47;
    border: 1px solid #002d47;
    width: 100%;
    padding: 15px 0;
    font-size: 15px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    color: #e5e5e5;
    transition: 0.5s ease;
    font-family: 'Josefin Sans', sans-serif;
}

.contact button:hover {
    background: #002135
}

footer {
    background: rgb(25,25,25);;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

footer .top {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 50px 5%;
    width: 90%;
    gap: 50px;
}

footer .top .left {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

footer .top .left img {
    display: none;
}

footer .top .left h3 {
    margin: 20px 0 0 0;
}

footer .top .left p {
    margin: 0;
}

footer .top .right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

footer ul {
    margin: 0;
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12.5px;
}

footer ul li:first-child {
    font-weight: bold;
}

footer ul li a{
    cursor: pointer;
    color: #cbcbcb;
    text-decoration: none;
}

footer .links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

footer .links h3 {
    margin: 0;
}

footer .links a {
    color: #00a1ff;
    text-decoration: underline;
    margin: 5px 0 25px 0;
}

footer .bottom {
    background: rgb(20,20,20);
    padding: 25px 5%;
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

footer .bottom p {
    margin: 0;
}

.header {
    padding: 176px 0 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12.5px;
}

.header h1 {
    margin: 0;
    font-size: 45px;
}

.header p {
    margin: 0;
    font-size: 16px;
}

.terms {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 75px;
}

.terms h2 {
    font-size: 35px;
    margin: 0;
}

.terms h3 {
    font-size: 25px;
    margin: 25px 0 0 0;
    color: #979797;
}

.terms p {
    margin: 12.5px 0 0 0;
}

.mobile {
    display: none;
}