@charset "utf-8";
/* CSS Document */
body {
    background-color: #f4f5ff;
    font-family: Courier, monospace;
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    background-color: #36344d;
    color: white;
    padding: 1em;
    text-align: left;
    display: flex;
    align-items: left;
    justify-content: left;
}

header .logo {
    max-width: 100%;
    height: auto;
    margin-left: auto;
	flex: 1;
}

main {
    flex: 1;

}

footer {
    background-color: #36344d;
    color: white;
    padding: 1em;
    text-align: center;
    position: fixed;
    width: 100%;
    bottom: 0;
}


.content {
    flex: 1;
    padding: 20px;
    text-align: center;
}

.content-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.gif-container {
    border: 2px solid #ccc;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.gif-container img {
    max-width: 100%;
    height: auto;
}
