.leiras {
    width: 90%;
    padding: 0 5vw !important;
    margin-top: -5rem;
}

.leiras h1 {
    color: #019ACA;
    text-transform: uppercase;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}


.leiras p, strong, li {
    color: #067497;
    font-weight: bold;

    font-size: 1.5rem;
}

.leiras p {
    font-weight: 600;
    margin-top: 0;
    text-align: justify;
}





@media screen and (orientation:portrait) {
    .leiras h1 {

        font-size: 2rem;
        margin-bottom: 0;
    }
    
    
    .leiras p {

        font-size: 1.2rem;
    }
    

    .leiras {
        margin-top: 0;
    }
    

}


.hatter {
    background: rgb(0,194,255);
    background: linear-gradient(90deg, rgba(0,194,255,1) 0%, rgba(0,97,128,1) 100%);
    margin-top: 0;
}


.hatter li, .hatter h1, .hatter p, .hatter strong {
    color: white;
}



/* styles.css */

/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 3.75rem; /* 60px */
    height: 2.125rem; /* 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;
    border-radius: 3rem;
}

/* The slider before/after */
.slider:before {
    position: absolute;
    content: "";
    height: 1.625rem; /* 26px */
    width: 1.625rem; /* 26px */
    left: 0.25rem; /* 4px */
    bottom: 0.25rem; /* 4px */
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

/* Checkbox checked state */
input:checked + .slider {
    background-color: #00c2ff;
}

/* Move the slider when checked */
input:checked + .slider:before {
    transform: translateX(1.625rem); /* 26px */
}


main {
    margin-bottom: 2rem;
}