html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
    background-color: black;
}

body {
    margin-bottom: 60px;
}

header {
    max-width: 1200px;
    margin: 0 auto;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
    text-align: start;
}

h1 > a {
    text-decoration: none;
    color: dodgerblue;
}

h1 > a:visited {
    color: dodgerblue;
}

a {
    color: #32CD32;
}

a:visited {
    color: #32CD32;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}


.content-container {
    border: dashed dodgerblue;
    color: #32CD32;
    padding: 1rem;
}

.header-container {
    border: solid dodgerblue;
    padding: 1rem;
    text-align: center;
}

.header-container h1 {
    color: dodgerblue;
    font-size: 2.5rem;
    font-weight: bold;
}

.mb-1 {
    margin-bottom: 1rem;
}

.form-label {
    color: #32CD32;
    display: block;
    margin-bottom: 0.5rem;
}

.form-textarea {
    color: #32CD32;
    background-color: black;
    border: 1px solid #32CD32;
    border-radius: 0.25rem;
    width: 100%;
    height: 200px;
}

.form-button {
    background-color: #32CD32;
    color: black;
    border: none;
    border-radius: 0.25rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
}

.hidden {
    display: none;
}


.wheel-pointer {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 30px solid red;
    z-index: 2;
}

.wheel-container {
    position: relative;
    width: 600px;
    height: 600px;
    margin: 20px auto;
}

.wheel-selected-item {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    margin-top: 20px;
}