﻿body {
    font-size: 150%;
    font-family:'Colonna MT', sans-serif;
}

h1 {
    font-size: 100px;
    margin: 0px;
}

div.light-mode {
    width: 666px;
    border-style: solid;
    border-width: 5px;
    border-color: black;
    border-radius: 15px;
    background-image: linear-gradient(to right, #b3b4ce, #b3b4ce);
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 10px;
    padding-bottom: 3px;
    text-align: left;
    font-family:'Cambria Math', serif;
    margin: 10px;
}

div.dark-mode {
    width: 666px;
    border-style: solid;
    border-width: 5px;
    border-color: #d8d8d8;
    border-radius: 15px;
    background-image: linear-gradient(to right, #53546b, #53546b);
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 10px;
    padding-bottom: 3px;
    text-align: left;
    font-family: 'Roboto Slab', serif;
    margin: 10px;
}

h2 {
    position: absolute;
    margin: 0px;
    left: 27.5%
}

p {
    text-align: right;
    font-size: 10px;
    margin-right: 10px;
}

body.dark-mode {
    background-color: black;
    color: #d8d8d8;
}

body.light-mode {
    background-color: #d8d8d8;
    color: black;
}

a.dark-mode {
    color:  black;
}

a.light-mode {
    color: black;
}

.slider.round {
    border-radius: 34px;
}

    .slider.round:before {
        border-radius: 50%;
    }

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }



    .slider:before {
        position: absolute;
        content: "";
        height: 26px;
        width: 26px;
        left: 4px;
        bottom: 4px;
        background-color: white;
        -webkit-transition: .4s;
        transition: .4s;
    }

input:checked + .slider {
    background-color: #ff0000;
}

input:focus + .slider {
    box-shadow: 0 0 1px black;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}



html {
    scroll-behavior: smooth;
}
