body {
    background: #36393f;
    font-family: 'Fira Sans', sans-serif;
}

.jumbotron {
    background: #2f3136;
    padding: 1rem 1rem; 
    margin-bottom: 1rem; 
}

.jumbotron h2 {
    font-size: 1.5rem;
}

h1 {
    color: white;
    font-weight: bold;
    color: #8A2BE2;
}

h1 span {
    color: red;
}

h2, p {
    color: #b9bbbe;
}

a {
    color: hsl(197,100%,47.8%);
}

button, a.btn {
    color: white !important;
    background-color: hsl(235,85.6%,64.7%) !important;
    border: none !important;
    box-shadow: none !important;
    transition: background-color .17s ease;
}

button:hover, a.btn:hover {
    background-color: hsl(235,51.4%,52.4%) !important;
}

button:active, a.btn:active {
    background-color: hsl(235,46.7%,44.1%) !important;
}

.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.main-logo {
    width: 80%;
    max-width: 250px;
    height: auto;
    border-radius: 50%;
    padding: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: -20px;
}

@media (max-width: 768px) {
    .main-logo {
        width: 70%;
    }
}

@media (max-width: 480px) {
    .main-logo {
        width: 90%;
    }
}

.avatar-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #8A2BE2;
}

.username {
    margin-top: 10px;
    font-size: 1.2em;
    color: white;
}

label {
    color: #8e9297;
}

label.radio {
    position: relative;
    display: block;
    padding: 10px;
    border-radius: 4px;
    background-color: #2f3136;
    color: #b9bbbe;
    margin-bottom: 8px;
    cursor: pointer;
}

label.radio:hover {
    background-color: rgba(79,84,92,0.16);
    color: #dcddde;
}

label.radio.checked {
    background-color: #202225;
    color: #ffffff;
}

label.radio > span:not(.checkmark) {
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    margin-left: 32px;
}

label.radio > input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

label.radio > .checkmark {
    position: absolute;
    top: 12px;
    left: 12px;
    height: 20px;
    width: 20px;
    padding: 3px;
    border-radius: 50%;
    border-width: 2px;
    border-color: #b9bbbe;
    border-style: solid;
}

label.radio:hover > .checkmark {
    border-color: #dcddde;
}

label.radio.checked > .checkmark {
    border-color: #ffffff;
}

label.radio > .checkmark > span {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

label.radio.checked > .checkmark > span {
    background-color: hsl(235,86.1%,77.5%);
}

select {
    background-color: #2f3136 !important;
    border: 1px solid #202225 !important;
    cursor: pointer !important;
    color: #dcddde !important;
    border-radius: 4px !important;
    font-weight: 500 !important;
    outline: none !important;
    box-shadow: none !important;
}

select:invalid {
    color: #72767d !important;
}

span {
    color: #b556ff !important; 
}

option {
    color: #b9bbbe;
}

textarea {
    color: #dcddde !important;
    background: rgba(0, 0, 0, 0.1) !important;
    border: 1px solid rgba(0, 0, 0, 0.3) !important;
    outline: none !important;
    box-shadow: none !important;
    transition: border-color .2s ease-in-out;
    resize: none;
    overflow-y: hidden;
}

textarea:hover {
    border-color: #040405 !important;
}

textarea:focus {
    border-color: hsl(197,100%,47.8%) !important;
}

.textInput {
    position: relative;
}

.remainingLength {
    position: absolute;
    bottom: 12px;
    right: 14px;
    font-size: 12px;
    font-family: monospace;
    pointer-events: none;
    color: #72767d;
}

.lowOnSpace {
    color: #f36c6c;
}

.submit-button {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.submit-button .btn {
    background-color: #8A2BE2 !important;
    color: white;
    font-weight: bold;
}
