/* styles.css */ 
html {
    padding-top:150px;
    padding-bottom:150px;
    min-height: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
    color: white;
    font-family: Open Sans, Franklin Gothic Sharp, Arial, sans-serif;
}
body {
    min-height: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
    color: white;
    font-family: Open Sans, Franklin Gothic Sharp, Arial, sans-serif;
}

.container {
    text-align: center;
}

.centered-image {
    display: block;
    margin: 0 auto;
    text-align: center;
}

.link-logo {
    text-align: center;
}

.centered-text {
    margin-top: 20px;
    font-size: 24px;
    text-align: center;
}

a:link, a:visited, a:hover, a:active {
    color:white;
    margin-top: 20px;
    font-size: 24px;
    text-decoration: none;
}


/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.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);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

body.light-mode {
    background-color: #ffffff;
    color: #121212;
}


@import url('/favicon.ico'); 
