  /*Extra Large Screens*/
@media screen and (min-width:1200px){
    /*background image*/
    #background {
        min-height:44vh;
        background: linear-gradient(rgba(0,0,0,0.1),rgba(0,0,0,0.7)),url('Images/building.jpg') no-repeat;
        background-size: cover;
        background-attachment: fixed;
        background-position: center;
        color: rgb(255, 255, 255);
    }

    /* global links set to black*/
    a {
        color: black;
    }

    a:hover {
        color:blue;
    }

    /* contact info */
    #contact {
        padding-left:20%;
        width:60vw;
        height:max-content;
        background-color: white;
        margin-top:50px;
    }

    #contact p {
        margin:0px;

    }

    .info {
        display:grid;
        grid-template-columns: auto auto;
        column-gap: 60px;
        margin-bottom:20px;
    }

    .reachInfo {
        align-items: left;
        text-align: left;
    }

    .reachInfo p.small, .reachInfo a, .reachInfo i {
        font-size: 15px;
        text-decoration: none;
        margin-top:10px;
        margin-bottom:10px;
        align-self: left;
    }
}

/*Large Screens*/
@media screen and (min-width:992px) and (max-width:1199px){
    /*background image*/
    #background {
        min-height:44vh;
        background: linear-gradient(rgba(0,0,0,0.1),rgba(0,0,0,0.7)),url('Images/building.jpg') no-repeat;
        background-size: cover;
        background-attachment: fixed;
        background-position: center;
        color: rgb(255, 255, 255);
    }

    /* global links set to black*/
    a {
        color: black;
    }

    a:hover {
        color:blue;
    }

    /* contact info */
    #contact {
        width:100%;
        height:max-content;
        background-color: white;
        margin-top:50px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .info {
        display:grid;
        grid-template-columns: 1fr 1fr;
        column-gap: 30px;
        margin-bottom:20px;
    }

    .reachInfo {
        align-items: left;
        text-align: left;
    }

    .reachInfo p.small, .reachInfo a, .reachInfo i {
        font-size: 15px;
        text-decoration: none;
        margin-top:10px;
        margin-bottom:10px;
        align-self: left;
    }
}

/*Medium Screens*/
@media screen and (min-width:768px) and (max-width:991px){
    /*background image*/
    #background {
        min-height:44vh;
        background: linear-gradient(rgba(0,0,0,0.1),rgba(0,0,0,0.7)),url('Images/building.jpg') no-repeat;
        background-size: cover;
        background-attachment: fixed;
        background-position: center;
        color: rgb(255, 255, 255);
    }

    /* global links set to black*/
    a {
        color: black;
    }

    a:hover {
        color:blue;
    }

    /* contact info */
    #contact {
        width:100%;
        height:max-content;
        background-color: white;
        margin-top:50px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .info {
        display:grid;
        grid-template-columns: 1fr 1fr;
        column-gap: 30px;
        margin-bottom:20px;
    }

    .info p {
        font-size: 25px !important;
    }

    .reachInfo {
        align-items: left;
        text-align: left;
    }

    .reachInfo p, .reachInfo a, .reachInfo i {
        font-size: 15px !important;
        text-decoration: none;
        margin-top:10px;
        margin-bottom:10px;
        align-self: left;
        text-wrap: wrap;
    }
}

/*Small Screens*/
@media screen and (min-width:576px) and (max-width:767px){
    /*background image*/
    #background {
        min-height:44vh;
        background: linear-gradient(rgba(0,0,0,0.1),rgba(0,0,0,0.7)),url('Images/building.jpg') no-repeat;
        background-size: cover;
        background-attachment: fixed;
        background-position: center;
        color: rgb(255, 255, 255);
    }

    /* global links set to black*/
    a {
        color: black;
    }

    a:hover {
        color:blue;
    }

    /* contact info */
    #contact {
        width:100%;
        height:max-content;
        background-color: white;
        margin-top:50px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .info {
        display:flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        column-gap: 30px;
        margin-bottom:20px;
    }

    .info p {
        font-size: 25px !important;
    }

    .reachInfo {
        align-items: left;
        text-align: left;
    }

    .reachInfo p, .reachInfo a, .reachInfo i {
        font-size: 15px !important;
        text-decoration: none;
        margin-top:10px;
        margin-bottom:10px;
        align-self: left;
    }
}

/*Mobile Screens*/
@media screen and (max-width:575px){
    /*background image*/
    #background {
        min-height:44vh;
        background: linear-gradient(rgba(0,0,0,0.1),rgba(0,0,0,0.7)),url('Images/building.jpg') no-repeat;
        background-size: cover;
        background-attachment: fixed;
        background-position: center;
        color: rgb(255, 255, 255);
    }

    /* global links set to black*/
    a {
        color: black;
    }

    a:hover {
        color:blue;
    }

    /* contact info */
    #contact {
        width:100%;
        height:max-content;
        background-color: white;
        margin-top:20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .info {
        display:flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        column-gap: 10px;
        margin-bottom:10px;
    }

    .info p {
        font-size: 20px !important;
    }

    .reachInfo {
        align-items: left;
        text-align: left;
        margin-left:20px;
        margin-right: 20px;
    }

    .reachInfo p, .reachInfo a, .reachInfo i {
        font-size: 15px !important;
        text-decoration: none;
        margin-top:10px;
        margin-bottom:10px;
        align-self: left;
    }

    .small{
        font-size: 25px !important;
        margin-left: 20px;
        margin-right: 20px;
    }
}