body{
    background-color: #defbdd52;
}

div{
    margin: 10px;
}

/*pre{
    background-color: #defbdd52;
    border-radius: 10px;
    box-shadow: 10px 10px 10px 5px #adb5bdc7;
}*/

a{
    color: #ffffff;
    background-color: #007bff80;
    padding: 5px;
    border-radius: 5px;
    text-decoration: none;
    transition-property: background-color;
    transition-duration: .15s;
    transition-timing-function: linear;
    transition-delay: 0s;
}

a:hover{
    background-color: #FFFFFF;
    color: #000000;
    text-decoration: none;
}

.btn{
    background-color: #007bff80;
    border: none;
    transition-property: background-color,color;
    transition-duration: .15s;
    transition-timing-function: linear;
    transition-delay: 0s;
}
.btn:hover{
    background-color: #FFFFFF;
    color: #000000;
}

.enter{
    font-size: 130%;
    font-weight: bold;
}

.carousel-caption{
    color: #000000;
}

.my-content,
.my-article,
pre{
    background-color: #d0ffc600;
    background-image: linear-gradient(to bottom right, #e7ffde33, #ffffe387);
    box-shadow: 0px 0px 40px 15px #95d7ff7a;
    border-radius: 10px;
}

.my-content{
    text-align: center;
}

.my-content,
.my-article{
    padding: 20px;
    color: #000000;
    margin-top: 20px;
}

.nav-item{
    margin: 2px;
}

.navbar-light .navbar-nav .nav-link{
    color: #ffffff;
}

.form-control{
    background-color: #ffffff00;
    border: none;
}

.temp-calc {
    display: flex;
    justify-content: center;
}

/* toggle switch */
.switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 29px;
    background-color: #000000;
    border-radius: 20px;
    transition: background-color 0.3s linear;
}

.switch::after {
    content: 'F';
    position: absolute;
    width: 25px;
    height: 25px;
    background-color: #ffffff;
    border-radius: 50%;
    top: 2px;
    left: 2px;
    transition: all 0.3s;
    justify-content: center;
}

.checkbox:checked + .switch::after {
    left: 13px;
    content: 'C';
}

.checkbox:checked + .switch {
    background-color: #007bff80;
}

.checkbox {
    display: none;
}

label {
    margin: 5px;
}
