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

body {
    margin: 0;
    padding: 0;
    font-family: 'Ubuntu', sans-serif;
    height: 100vh;
    position: relative;
}

#root {
    width: 100%;
    height: 100vh;
}

.content-container {
    height: 100vh;
    display: block;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    margin-top: 140px;
    padding: 0 130px;
}

.title {
    color: #262834;
    font-size: 42.72px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.641px;
}

.title-small {
    font-weight: 300;
}

button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 47px 0;
    color: white;
    border: none;
    cursor: pointer;
    background-color: #e8751c;
    height: 48px;
    padding: 8px 50px;
    border-radius: 30px;
    font-family: 'Ubuntu', sans-serif;
}

button:hover {
    background-color: #e8741cd8;
}

.description {
    color: #262834;
    font-family: 'Ubuntu', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 175.4%;
    white-space: pre-line;
}

.download-icon {
    font-size: 20px;
}

.dx-tools-page {
    height: 100%;
    width: 100%;
    overflow: auto;
    display: flex;
    flex-direction: column;
}

.dx-tools-page__header {
    flex-shrink: 0;
    padding: 144px 0 0 130px;
    align-items: center;
    display: flex;
    position: sticky;
    top: 0;
    z-index: 5;
    width: 200px;
}

.confetti {
    position: absolute;
}

.confetti-container {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
    z-index: -1;
}

.confetti--top-right {
    top: 0;
    right: 0;
}

.confetti--top {
    top: 0;
    left: 10%;
    right: 0;
    margin: auto;
}

.confetti--bottom {
    bottom: 0;
    left: 38%;
    right: 0;
    margin: auto;
}

.confetti--bottom-left {
    bottom: 0;
    left: 0;
}

.confetti--vh-center {
    left: 650px;
    right: 0;
    margin: auto;
    top: 220px;
}

@media only screen and (max-width: 425px) {
    .confetti--vh-center {
        display: none;
    }

    .content-container {
        padding-left: 50px;
        margin-top: 100px;
        padding-right: 50px;
    }

    .dx-tools-page__header {
        flex-shrink: 0;
        padding: 144px 0 0 50px;
        align-items: center;
        display: flex;
        position: sticky;
        top: 0;
        z-index: 5;
        width: 200px;
    }
}
