@charset "utf-8";
/* CSS Document */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-size: 100%;
    font-family: Arial, sans-serif;
    min-width: 1200px; /* Ensure body has a minimum width */
	min-height: 1920px;
	line-height: 1.25;
}

.container {
    display: flex;
    justify-content: center;
    min-width: 1200px;
    max-width: 1600px;
    padding: 20px;
}

.content {
    max-width: 1200px;
    padding: 40px;
    background-color: #f9f9f9;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    flex-grow: 1; /* Allow content to grow */
}

/* Mobile styles */
@media (max-width: 767px) {
  body {
    font-size: 250%;
    font-family: Arial, sans-serif;
    min-width: 1200px; /* Ensure body has a minimum width */
	line-height: 1.25;
  }
}

.heading1 {
    font-size: 3em;
    font-weight: bold;
    font-style: normal;
    line-height: normal;
    padding-bottom: 30px;
}
.heading2 {
    font-size: 2.5em;
    font-weight: bold;
    font-style: normal;
    line-height: normal;
    padding-bottom: 20px;
}
.heading3 {
    font-size: 2em;
    font-weight: bold;
    font-style: normal;
    line-height: normal;
    padding-top: 20px;
    padding-bottom: 20px;
    text-decoration: underline;
}

p {
    font-size: 1.25em;
    font-weight: normal;
    font-style: normal;
    line-height: 1.5;
}
.style-underline {
    text-decoration: underline;
}
.style-bold {
    font-weight: bold;
}
.style-italic {
    font-weight: normal;
    font-style: italic;
}

.info-block {
    display: inline-block;
}

.info-block ul {
    margin-left: 20px;
}

ol {
    font-size: 1.25em;
    margin-left: 30px;
}

ol li {
    margin-bottom: 10px;
}

ul {
    margin-left: 20px;
    margin-top: 10px;
}

ul li {

}
