* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #333;
    background-color: #f4f4f4;
   }

.container {
   
    margin: 0 auto;
    display: flex;
    align-items: left;
    justify-content: space-between;
    float: left;
}


header {
    background-color: #082277;
    background-size:cover;
    background-position: center;
    color: white;
    padding: 20px;
    display: flex;
    align-items: left;
    justify-content: space-between;
    width: 100%;
}

.logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-left:0;
    text-align: center;
    margin-right: 10;
}

header h1 {
    font-size: 1em;
    width: 100%;
    text-align: left;
    text-shadow: 
    -2px -2px 0 #0a0760,  
     2px -2px 0 #000,
    -2px  2px 0 #08124b,
     4px  2px 0 #071b45;
     text-decoration: dotted;
}


.intro {
    text-align: center;
    padding: 50px 0;
    background-image: url('college.png');
    background-size:cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #f4f4f4;
    transition: background-image 1s ease-in-out;
    height: 50%;
    
}

.intro h1{
    font-size: 2.5em;
    margin-bottom: 20px;
    text-shadow: 
        -2px -2px 0 #0a0760,  
         2px -2px 0 #000,
        -2px  2px 0 #08124b,
         4px  2px 0 #071b45;
}

.intro p{
    font-size: 1.2em;
    margin-bottom: 20px;
    background-color: #f3e5c56e;
    color: #000;
}

.intro button {
    padding: 10px 20px;
    font-size: 1em;
    background-color: #0044cc;
    color: #f4f4f4;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.intro button:hover {
    background-color: #F59E0B;
    transform: scale(1.2);
}

.news {
    padding: 50px 0;
    text-align: center;
}

.news h2{
    font-size: 2em;
    margin-bottom: 20px;
}

footer {
    background-color: #082277;
    color: #f4f4f4;
    text-align:justify;
    padding:none;
    margin: none;

}

footer a:hover {
    text-decoration: underline;
}


