:root{
    --color1 : #D6E6F2;
    --color2 : #B9D7EA;
}
 
* {
    text-decoration: none;
    margin: 0;
    padding: 0;
    transition: all 0.5s linear;
}

html{
    padding: 0;
    margin: 0;
    scroll-behavior: smooth;
}

body{
    width: 100%;
    margin: 0px;
    padding: 0px;
    font-family: 'Open Sans',sans-serif;
    background : var(--color1);
    background-size: cover;    
    position: relative;
}

.wrapper{
    width: 1100px;
    margin: auto;
    position: relative;
}

nav .wrapper{
    display: flex;
}
nav .wrapper h1{
    margin-right: 2rem;
}

nav{
    width: 100%;
    margin: auto;
    line-height: 60px;
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    background: var(--color2);
    z-index: 1;
    border-bottom: 1px solid white;
}

.sugestbox{
    padding-top: 10px;
    padding-bottom: 70px;
    text-align: center;
}

.sugestbox form{
    padding-top: 15px;
    margin: auto;
    display: flex;
    flex-direction: column;
    width: 35rem;
    gap: 2rem;
}

.sugestbox input,select,textarea {
    padding: 1.4rem;
    background: transparent;
    border: 1px solid white;
}

.sugestbox textarea{
    height: 18rem;
}

.sugestbox h3{
    margin-top: 5px;
    font-size: larger;
}

.sugestbox button{
    background: #111111;
    border-radius: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 15px 20px 15px 20px;
    color: #ffffff;
    cursor: pointer;
    font-weight: bold;
    transition: 0.5s;
}

.sugestbox button:hover{
    background: #ffffff;
    color: #000000;
    padding: 15px 20px 15px 20px;
}

.color-switch{
    position: fixed;
    top: 25px; 
    right: -225px;
    width: 200px;
    padding: 10px;
    background: #fff;
    z-index: 1000;
}

.color-switch.active{
    right: 0px;
}

.color-switch a ion-icon{
    width: 180px;
    color: var(--color2);
    font-size: 1.5em;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    padding: 5px 0;
    text-align: center;
}

.color-switch h3{
    color: var(--color2);
    font-size: 20px;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    padding: 5px 0;
    text-align: center;
}

.color-switch .switch-btn{
    position: absolute;
    top: 0;
    left: -75px;
    background: var(--color1);
    padding: 10px 20px;
    cursor: pointer;
    font-size: 35px;
}

.color-switch .switch-btn ion-icon{
    animation:rotate 2s linear infinite;
}

@keyframes rotate{
    100%{
        transform: rotate(360deg);
    }
}

.color-switch .theme-buttons-containner{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;

}

.color-switch .theme-buttons-containner .theme-buttons{
    display: block;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    margin: 5px;
    cursor: pointer;
}

#copyright{
    background: var(--color2);
    text-align: center;
    width: 100%;
    padding-top: 10px;
}

#copyright p{
    font-size: 10px;
    text-align: left;
}

@media screen and (max-width:991.98px) {
    .wrapper{
        font-size: 80%;
        width: 90%;
    }

    .sugestbox form{
        width: 80%;
    }
}
