﻿@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;700;800&display=swap');

:root {
    --primary: #7766ff;
    --dark-primary: #321afc;
    --light-primary: #f4f3ff;
    --secondary: #16003a;
    --light-secondary: #4a01c1;
    --dark-secondary: #16003a;
    --success: #3ec65d;
    --light-success: #ebfeef;
    --dark-success: #0a9629;
    --danger: #fe206e;
    --light-danger: #fff2f7;
    --dark-danger: #f40056;
    --info: #00badd;
    --light-info: #e5fbff;
    --dark-info: #006679;
    --gray: #f4f5f8;
    --light-gray: #ffffff;
    --dark-gray: #a2a0b5;
}

body, html {
    font-weight: 400 !important;
    font-family: Montserrat, Helvetica, sans-serif !important;
    -ms-text-size-adjust: 100% !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    background-color: #f9faff !important;
    margin: 0;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

html, body {
    width: 100%;
    height: 100%;
}

body {
    background-image: url(/assets/media/therme-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    color: white;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

body > * {
    color: white;
}

.api-description-box {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 80%;
    max-width: 1000px;
    max-height: 600px;
    transform: translate(-50%, -50%);
    background-color: #16003ae6;
    border-radius: 3px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
}

.api-description-box > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.therme-group {
    height: 40px;
}

.spark-radiance {
    height: 30px;
}

.btn {
    text-decoration: none;
    color: white;
    text-transform: uppercase;
    font-size: 1.25em;
    padding: 20px 30px;
    background-color: #7766ff;
}

.btn:hover {
    background-color: #321afc;
}