.header {
    display: flex;
    align-items: center;
    justify-content: space-between; 
    width: 100%;
    height: 130px;
    background-color: #1E32C3;
    padding: 10px 20px;
    border-radius: 10px;
    border: 3px solid white;
    box-sizing: border-box;
}

.left-text, .title {
    margin: 0;
    padding: 0;
}

.left-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: white;
    font-family: "Comic Sans MS", cursive, sans-serif;
    font-size: 30px;
    font-weight: bold;
}

.title {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-family: "Comic Sans MS", cursive, sans-serif;
    font-weight: bold;
    font-size: 40px;
    text-align: center;
}

.logo {
    width: 120px; 
    height: auto;
    object-fit: contain;
}
