.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
}

input:checked + .slider {
    background-color: #2196F3;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.marquee {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    box-sizing: border-box;
    border: 2px solid #fff;  /* Add a border around the marquee */
    border-radius: 5px;  /* Make the border corners rounded */
    box-shadow: inset 0 0 10px #000;  /* Add a beveled effect with an inner shadow */
    background-color: #000;  /* Add a background color to the marquee */
}

.marquee p {
    display: inline-block;
    padding-left: 100%;
    font-size: 24px;  /* Increase the font size */
    color: rgb(0, 0, 0);  /* Change the text color */
    text-shadow: 0 0 1px lime, 0 0 3px lime, 0 0 4px lime, 0 0 6px lime;  /* Add a green glow effect */
    animation: marquee 15s linear infinite;  /* Slow down the animation speed */
}

@keyframes marquee {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
}