/** Write your CSS in here **/
body, html {
    margin:0;
    padding:0;
    border: 0;
}
div {
    margin: auto;
    /* position: relative; */
    /* top: 100px; */
}
h1 , h2 {
    margin: 0;
}

/* ADDED TOGGLE BUTTON */

.container {
    padding: 0;
    margin: 0;
    position: relative;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    align-self: flex-end;
}

.toggle {
    position: relative;
    top: 0;
    left: 0;
    width: 60px;
    height: 35px;
    background-color: rgb(105, 185, 185);
    border-radius: 10px;
    cursor: pointer;
    transition: 0.5s;
}

.toggle.active {
    background-color: teal;
    /* justify-content: flex-end; */
}

.toggle-button {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 25px;
    height: 25px;
    background-color: white;
    border-radius:25%;
    filter: drop-shadow(0 0 0.25rem rgb(0, 53, 53));
    transition: 0.5s;
}

.toggle-button.active {
    left: 30px;
}

.text {
    position: relative;
    left: 10px;
    width: 3rem;
    font-weight: bold;
    color: teal;
}

.auto-text {
    position: relative;
    right: 10px;
    font-weight: bold;
    color: teal;
}

/* ADDED HOVER EFFECT */

#new-quote-button {
    background-color: teal;
    transition: 0.25s;
    font-weight: bold;
}
#new-quote-button:hover {
    background-color: rgb(0, 100, 100);
}

.mainDiv {
    box-shadow: 1rem 1.25rem 0.5rem rgb(0, 100, 100);
    border-radius: 1.5rem;
}

body {
    background-image: linear-gradient(165deg, teal, rgb(110, 228, 188));
    background-repeat: no-repeat;
    background-attachment: fixed;
}
/* rgb(10, 78, 78) 
rgb(97, 196, 180)*/