:root {
    --bg-color: rgb(11, 12, 14);
    --emphasis-bg-color: rgb(0, 132, 255);

    --primary-font-color: rgb(219, 219, 219);
    --border-color: rgb(99, 97, 97);
}

/* ELEMENTS */
body,
html {
    font-family: Helvetica, Arial, sans-serif;
    color: var(--primary-font-color);
    background-color: var(--bg-color);
    min-height: 100vh;
}

/* CLASSES */
.banner {
    text-align: center;
    padding-top: 10vh;
    padding-bottom: 1vh;
    font-size: 36px;
}

.btn-group {
    flex-wrap: wrap;
}

.btn-group-item {
    background-color: transparent;
    color: var(--primary-font-color);
    border-color: var(--border-color);
    font-size: 24px;

    transition: font-size 500ms ease;
    transition: background-color 500ms ease;
}

.btn-group-item:hover {
    background-color: var(--primary-font-color);
    color: black;
}

.emphasis {
    padding: 5px;
    background-color: var(--emphasis-bg-color);
    color: var(--primary-font-color);
    border-radius: 5px;
}

.my-input {
    margin: 0 auto;
    border: 1px solid var(--border-color);
    border-bottom-style: none;
    border-radius: 0;
    text-align: center;
    background-color: black;
    color: var(--primary-font-color);

    font-size: 24px;
    transition: font-size 500ms ease;
}

.my-select {
    margin: 0;
    border: 1px solid var(--border-color);
    border-top-style: none;
    border-radius: 0;
    background-color: black;
    color: var(--primary-font-color);

    font-size: 24px;
    transition: font-size 500ms ease;
}

.selected-btn {
    background-color: rgb(0, 132, 255);
    color: var(--primary-font-color);
    font-weight: bold;
}


/* LG */
@media only screen and (min-width: 992px) {
    .banner {
        padding-top: 150px;
    }

    .btn-group-item, .my-input, .my-select {
        font-size: 24px;
    }
}

/* MD */
@media only screen and (min-width: 769px) and (max-width: 992px) {
    .btn-group-item, .my-input, .my-select {
        font-size: 22px;
    }
}

/* S */
@media only screen and (min-width: 577px) and (max-width: 768px) {
    .banner {
        padding-top: 50px;
    }

    .btn-group-item, .my-input, .my-select {
        font-size: 20px;
    }
}

/* XS */
@media only screen and (max-width: 576px) {
    .banner {
        padding-top: 75px;
    }

    .btn-group-item, .my-input, .my-select {
        font-size: 20px;
    }
}