body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}
header {
    background: #333;
    color: white;
    padding: 10px 20px;
    display: flex;
    
    justify-content:center;
}
.logof img {
    height: 50px;
    width: auto;
    border-radius: 60%;
    justify-items: end;
}
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}
header {
    background: rgb(100, 178, 241);
    color: white;
    padding: 10px 20px;
    display: flex;
    
    
}
.logo img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid #ccc;
}

nav {
    background: #555;
    padding: 10px;
    text-align: center;
}
nav a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    display: inline-block;
}
nav a:hover {
    background: #777;
}
.container {
    max-width: 800px;
    margin: 20px auto;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
}
h2 {
    color: #333;
}
.section {
    margin-bottom: 20px;
}
footer {
    background: #7bb8ea;
    color: white;
    text-align: center;
    padding: 10px;
    position: relative;
    bottom: 0;
    width: 100%;
}