@import './style.css';

body {
    height: 100dvh;
	width: 100vw;
	background-image: url(./assets/background-side-menu.png);
	background-size: cover;
	display: flex;
	justify-content: center;
	overflow: hidden;

    .main-container-image {
        max-width: calc(100vh * (59 / 41));
        aspect-ratio: 59 / 41;
        background-color: #fff;
        overflow: hidden;
        box-sizing: border-box;
        width: 100%;
        height: 100%;
        position: relative;

        #content {
            height: 100dvh;
            width: 100%;
            padding: 20px;

            .content-title {
                text-decoration: underline;
            }

            .footer-content {
                width: 100%;
                display: flex;
                justify-content: center;
                margin-top: 50px;
            }
        }
    }
}

