* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    font-size: calc(0.625rem + (1rem - 0.75rem) * ((100vw - 27.5rem) / 50rem));
}

body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background-color: #f9f9f9;
    color: #333;
}

.page {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    max-width: 800px;
    width: 100%;
    min-height: 100vh;
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.25rem;
}

h1 {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    color: #333;
}

.title p {
    margin-bottom: 0.3125rem;
    color: #555;
}

h2 {
    font-size: 1.25rem;
    margin-bottom: 0.625rem;
    color: #333;
}

.title {
    margin-bottom: 2.5rem;
}

.block {
    margin-top: 0.8rem;
    margin-bottom: 0.25rem;
}

hr {
    width: 100%;
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
    border: 0;
    border-top: 1.5px solid #c8c8c8;
}

.block p, li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: #555;
}

li {
    margin-left: 1.25rem;
}

ol {
    margin-left: 1.25rem;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.inner-list {
    list-style-type: circle;
    margin-left: 1.25rem;
    margin-bottom: 1rem;
    margin-top: 0.25rem;
}
.inner-list li {
    margin-bottom: 0;  
}
.inner-list ul {
    list-style-type: square;
}

.sketches {
    width: 100%;
    height: auto;
    margin-bottom: 1.25rem;
}

