.signature-image {
    height: 75px;
    margin-top: 1.2rem;
    margin-bottom: 1rem;
}
main h3 {
    font-style: italic;
    margin-bottom: 0.6rem;
    color: #e6e6e2;
}
main p {
    margin-bottom: 1rem;
}
.head-container {
    display: flex;
    align-items: center;
    gap: 1.5em;
    margin-bottom: 1em;
    margin-top: 1em;
}
.head-text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.head-container img {
    max-height: 100px;
    width: auto;
}
.main-header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    margin-top: 20px;
    background-image: linear-gradient(to bottom, #007bff, 80%, #b8d9ff);
    padding: 0.5rem 1rem;
    border-radius: 15px;
}
.main-header h2 {
    margin-bottom: 0;
}
.main-header img {
    height: 60px;
    width: auto;
}
.gradient-text {
    background-image: linear-gradient(to bottom, #fff, 70%, #50a4ff);
}
@media (max-width: 768px) {
    .signature-image {
        height: 50px;
    }
    .main-header img{
        height: 40px
    }
    .head-container{
        gap: 0.7rem;
    }
}
@media (prefers-color-scheme: dark) {
    .main-header {
        background-image: linear-gradient(to bottom, #222222, 80%, #666666);
    }
    .gradient-text {
        background-image: linear-gradient(to bottom, #e6e6e2, 70%, #222);
    }
}