@media(min-width: 576px)
{

body{
    margin: 2px;
    padding: 5px;
    background: white;
    font-family: 'Times New Roman', Times, serif;
    
}
.toggle{
    position: fixed;
    top: 40px;
    left: 40px;
    z-index: 2
}
.toggle a{
    text-decoration: none;
    color: #262626;
    font-size: 24px;
    cursor: pointer;
}
.menu{
    margin: 0;
    padding: 0;
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #FFF;
    z-index: 1;
    transition: 0.5s;
}
ul{
    margin: 0;
    padding: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
ul li{
    list-style: none;
}

ul li a{
    padding: 10px;
    display: inline-block;
    font-family: verdana;
    font-size: 2em;
    text-decoration: none;
    text-transform: uppercase;
    color: #262626;
}
ul li a:hover{
    background: #F0FFFF;
    border-radius: 45%;
}
.menu.active{
    left: 0;
    overflow: auto;
}

.landing-page-1
{
    margin: 2em;
    padding: 2em;
}

.landing-page-1
{
    border-radius: 25%;
}

.landing-i1
{
    border-radius: 2%;
}

.navbar {
    display: flex;
    position: relative;
    justify-content: space-between;
    align-items: center;
    background-color: rgb(234, 245, 250);
    color: navy;
}

.title {
    font-size: 1.5rem;
    margin: .5rem;
}

.navbar-links {
    height: 100%;
}

.navbar-links ul {
    display: flex;
    margin: 0;
    padding: 0;
}

.navbar-links li {
    list-style: none;
}

.navbar-links li a {
    display: block;
    text-decoration: none;
    color: navy;
    padding: 1rem;
    transition: 0.3s all ease-in-out;
}

.navbar-links li:hover {
    transition: all 0.3s;
    background-color: skyblue;
    color: navy;
    border-radius: 8px;
}

.toggle-button {
    position: absolute;
    top: 5rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 10px;
    height: 18px;
}

.toggle-button .bar {
    height: 3px;
    width: 100%;
    background-color:  #8E0505;
    border-radius: 10px;
}

@media (max-width: 800px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .toggle-button {
        display: flex;
    }

    .navbar-links {
        display: none;
        width: 100%;
    }

    .navbar-links ul {
        width: 100%;
        flex-direction: column;
    }

    .navbar-links ul li {
        text-align: center;
    }

    .navbar-links ul li a {
        padding: .5rem 1rem;
    }

    .navbar-links.active {
        display: flex;
    }
}

.college-logo-section
{
    align-items: center;
    align-content: center;
    padding: 5px;
    margin:5px;
    background-color: azure;
}

.college-logo
{
    padding-right: 5px;
    background-color: azure;
}

.data-analysis, .card
{
    align-items: center;
    background-color: beige;
    padding: 5px;
    margin: auto;
}

.-analysis-description
{
    align-items: center;
    padding: 3px;
    margin: 3px;
}