body {
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-items: center;
    text-align: center;
    align-content: center;
    justify-content: center;
}


h1 {
    font-family: 'Courier New', Courier, monospace;
    font-size: 35px;
    margin-top: 25px;
    color: red;
}

.logo_image{
    margin-bottom: -18em;
    transform: scale(0.4);

}

@media (min-width: 769px) {
    .svg_content {
        max-width: 125%; /* Ensure the image is responsive */
        width: 125%;
        height: auto;
    }
}
@media (max-width: 768px) {
    .logo_image{
        margin-bottom: -15em;
    }
}