.schoolEmail:hover, .schoolWeb:hover{
    color: rgb(125, 125, 255);
}

/*-----------------------table of contents--------------------------

1. General styles
2. Typography
3. Buttons
4. 
*/
/*----------------------1. general styles---------------------------*/

body{
    position: initial;
    font-size: 14px;
    font-weight: 400;
    margin: 0;
    width: 100%;
    height: 100%;
    min-height: 100%;
    background-color: rgb(75, 75, 75);
    background-position: center center;
    background-attachment: fixed;
    overflow-y: auto;
    overflow-x: hidden;
}

section{
    background-color: white;
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
    margin-top: 20px;
    border-radius: 12px;
}

.page{
    display: flex;
    flex-flow: column;
    position: relative;
    flex: 0 0 100%;
    max-width: 1200px;
    margin: 3% auto;
    padding: 40px 70px 60px;
    background-color: black;
    box-shadow: 0px 0px 40px -5px green;
    border-radius: 40px;
    backface-visibility: hidden;
}

.list{
    margin-right: 15px;
    margin-left: 30px;
    margin-top: 20px;
}

h4{
    font-family: "Roboto Condensed", sans-serif;
    font-optical-sizing: auto;
    font-weight: weight;
    font-style: normal;
}

.text-logo{
    text-align: center;
}

.home-buttons{
    text-align: center;
}

.logo-text{
    display: inline-block;
    font-family: "Roboto Condensed", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 20px;
    line-height: 50px;
    font-weight: 700;
    color: red;
}

.logo-text:hover{
    color: white;
}

.logo-text span{
    font-weight: 350;
}









/*---------------------------3. Buttons-------------------------------*/

.btn-primary, .btn-secondary, .button, input[type="button"], input[type="submit"]{
    display: inline-block;
    position: relative;
    padding: .8em 2.1em;
    margin-bottom: .75em;
    margin-right: .25em;
    font-size: 1em;
    line-height: 1.2;
    outline: 0;
    border: 2px solid #007ced;
    color: white;
    text-shadow: none;
    background-color: #333;
    border-radius: 30px;
    /*font-family: ;---------------------------------------------------------------------------------------------------------------------------error------------------------*/
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out; 
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 10px 10px -8px rgba(0, 0, 0, .78);
}

.btn-primary:last-child, .btn-secondary:last-child, .button:last-child, input[type="button"]:last-child, input[type="submit"]:last-child{
    margin-right: 0;
}

.btn-primary:hover, .btn-secondary:focus, .button:hover, button:focus input[type="button"]:hover, input[type="button"]:focus input[type="submit"]:hover, input[type="submit"]:focus{
    background-color: #007ced;
    color: white;
    border: 2px solid #007ced;
}

.btn-secondary{
    border-color: #d5d5d5;
    color: white;
    background-color: #333;
    box-shadow: 0px 10px 10px -8px rgba(0, 0, 0.78);
}

.btn-secondary:hover, .btn-secondary:focus{
    color: #333;
    border-color: #d5d5d5;
    background-color: #d5d5d5;
}
