* {
    box-sizing: border-box;
    margin: 0;
}

:root {
    --global-blue-grey-darken-3: #2E3538;
    --global-white: #DBDBDB
}

body {
    width: 100vw;
    height: 100vh;
    background-image: url("/img/bg/bg-1.png");
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
}

.app {
    width: 100%;
    height: 100%;
}

.container {
    display: flex;
    padding: 0 20px;
    align-items: center;
    justify-content: center;
}

.card {
    display: inline-flex;
    padding: 60px 50px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    background: var(--global-blue-grey-darken-3);
}

.card-title {
    display: flex;
    padding: 6px 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    align-self: stretch;
}

.card-body {
    display: flex;
    flex-direction: row;
    gap: 50px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.text-title {
    align-self: stretch;
    color: var(--global-white);
    text-align: center;
    font-family: Inter;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.platform-btn {
    display: flex;
    width: 200px;
    height: 200px;
    padding: 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background-color: #fff;
    text-decoration: none;

    span {
        color: #000;
        font-family: Inter;
        font-size: 36px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }
}

.h-100 {
    height: 100% !important;
}

.w-100 {
    width: 100% !important;
}