/* setting global site colors */
:root {
    /* logo red */
    --red: rgb(65,89,179);
    --white: white;
    --black: black;
    /* header background */
    --header: hsl(0, 0%, 53%);
    /* body backgroud */
    --background:rgb(221, 221, 223);  
    /* color: var(--red); */
    --active-menu: blue;
  }

html {
    /* background-image: linear-gradient(#128bb8, #2ab0c5);   */
    /* background-color: white;  */
    font-family: Arial, Helvetica, sans-serif;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: rgb(65,89,179);
}

h2 {
    font-size: 2.2rem;
    color: white;
    color: rgb(65,89,179);
}


h3{
    font-size: 1.8rem;
}


p {
    font-size: 1rem;
    line-height: 1.3rem;
    color: rgb(34, 34, 34);
    text-align: justify;
}

 a{
    font-size: 1rem;
    color:blue;
    text-decoration: none;
    
}


a:hover{
    text-decoration:underline;
}

.img_responsive {
    max-width: 100%;
    height: auto;
  }


body {
    background-color: var(--background);   
}

/* CONTAINER AND TOP SECTION ON EACH PAGE */
/* .container {
    background-color: rgb(238, 239, 241);
} */

.page_margins {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.container p{ 
    text-align: justify;
}


.page_name {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid darkgrey;
    margin-bottom: 1.25rem;
    
}

.page_name h1{
    color: var(--red);
    text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.171);
}


.mybutton a{
    border-style: solid;
    color: rgb(65,89,179);
    border-width: 3px;
    border-radius: 22px;
    margin-left: 20px;
    padding: 10px 15px;
    display: inline-block;
    text-decoration: none;
    color: white;
    color: rgb(65,89,179);
    font-size: 1.2rem;
    
}

.mybutton a:hover{
    background-color:blue;
    border-color:blue;
    color:white;
}

.form-button{
    border-style: solid ;
    border-color:rgb(65,89,179) ;
    color: rgb(65,89,179);
    border-width: 3px;
    border-radius: 22px;
    padding: 10px 15px;
    display: inline-block;
    text-decoration: none;
    color: white;
    background-color:rgb(65, 89, 179);
    font-size: 1.1rem;
    
}

.form-button:hover{
    background-color: rgb(99, 205, 245);
    border-color: rgb(99, 205, 245);
    color: rgb(65,89,179);
    color: rgb(65,89,179);
    color:white;
    text-decoration: none;
}

.form-button a:hover{
 
    text-decoration: none;
}

@media (max-width: 1367px){

}


@media (max-width: 1025px){

    .page_margins {
        width: 90%;
}

    .page_name{
        width: 90%;
    }

}



@media (max-width: 950px){    
    .mybutton {
        margin-left: 0rem;
    }

}


@media (max-width: 700px){


}


@media (max-width: 500px){
    .img_responsive{
        max-height: 25rem;;
    }

}


@media (max-width: 400px){
    .img_responsive{
        max-height: 18rem;;
    }

}