:root {
    --colorBG: #080808;
    --colorText: rgb(204, 204, 204);
    --colorBackground: #00000048;
    --colorButton: hsla(300, 97%, 77%, 0.747);
    --colorButtonHover: hsla(300, 29%, 40%, 0.747);
    --colorButtonText: #fcfcfc;
}
*{
    overflow: hidden;

}

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    font-family: "IBM Plex Sans", sans-serif;
    background-color: var(--colorBG);
}

.container {
    padding: 20px;
    border-radius: 0.35rem;
    width: fit-content;
    background: var(--colorBackground);
    color: var(--colorText);
    text-align: center;
}

label, input, select {
    display: block;
    margin: 10px 0;
    width: 100%;
}

input, select {
    padding: 8px;
    border-radius: 5px;
    border: 1px solid transparent;
    background-color: transparent;
    color: hsl(250 100% 80%);
    font-weight: 600;
    font-size: 16px;
}

input[type="datetime-local"] {
    width: calc(100% - 20px);
    line-height: 1.2;
    text-align: center;
}

select {
    text-align: center;
    background-color: var(--colorBackground);
    color: hsl(250 100% 80%);
}

button:hover {
    background-color: var(--colorButtonHover);
}

.result {
    max-width: 400px;
    width: 100%;
    color: var(--colorText);
    margin-top: 20px;
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    transition: opacity 0.5s ease-in-out;
}

.marker {
    color: hsl(250 100% 80%);
    padding: 0 3px;
    border-radius: 1px;
}

@media (max-width: 500px) {
   

  
}

input[type="datetime-local"]::-webkit-inner-spin-button,
input[type="datetime-local"]::-webkit-calendar-picker-indicator {
    display: none;
}
