body {
    background-color: #0e1015;
    margin: 0;
    font-family: Roboto,Inter,Arial,Helvetica;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.5;
    user-select: none;
    position: relative;
    overflow-x: hidden;
    background-image: url("https://cdn.dyno.gg/landing/background-circle.svg");
    background-repeat: no-repeat;
    background-position: 22vw 13vh;
    background-size: 50vw;
}

nav {
    background-color: #0c0e13;
    padding: 20px 20px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}


.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #181a20;
    flex-wrap: wrap;
    box-sizing: border-box;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
}

.nav-left {
    display: flex;
    align-items: center;
}

.navbar-logo {
    height: 40px;
    vertical-align: middle;
}

h1 {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    line-height: 1;
    margin: 0;
    padding: 0;
}

.title {
    letter-spacing: 3px;
    margin-left: 16px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav_head {
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    display: inline-block;
    padding-top: 10px;
    padding-left: 12px;
    padding-right: 12px;
    transition: 0.3s;
}

.nav_head:hover {
    color: #e33939;
    transition: 0.3s;
}

.button {
    padding: 8px 14px;
    background-color: #00bfff;
    color: white;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.button.red {
    background-color: #c1234f;
    transition: 0.3s;
}

.button.gray {
    background-color: #2e323d;
    transition: 0.3s;
}

.button.blue {
    background-color: #7289da;
    transition: 0.3s;
}

.button.red:hover {
    background-color: #a7284c;
    transition: 0.3s;
}

.button.gray:hover {
    background-color: #202329;
    transition: 0.3s;
}

.button.blue:hover {
    background-color: #6474b1;
    transition: 0.3s;
}

.main-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    justify-content: center;
    height: calc(100vh - 100px);
    position: relative;
    z-index: 1;
    padding: 20px;
    max-width: 700px;
    margin: 0px auto 0 auto;
    padding-top: 100px;
}

.footer-text {
    color: #fff;
    text-align: center;
    font-size: 14px;
    margin-top: 40px;
    padding: 20px;
}

.footer-text .highlight {
    color: #42b9c2;
    font-weight: 600;
}

.main-title {
    font-size: 42px;
    color: white;
    font-weight: 800;
    margin-bottom: 30px;
}

.main-subtitle {
    max-width: 650px;
    color: #d1d1d1;
    font-size: 16px;
    line-height: 1.6;
    margin-top: 20px;
    margin-bottom: 30px;
    font-weight: 700;
}

.big {
    padding: 19px 130px;
    font-size: 17px;
}

video {
    margin-top: 50px;
    border-radius: 20px;
}