:root {
    --primary-color: #141e30;
}

* {
    box-sizing: border-box;
}

html {
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    padding-top: 1.5rem;
    line-height: 1.3;
}

h1 {
    font-size: 2.25rem;
    text-align: center;
    font-weight: bold;
}

h2 {
    margin-left: 1rem;
    font-size: 1.75rem;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.bold {
    font-weight: bold;
}

.templates {
    margin-top: 2rem;
}

.template-container {
    margin-top: 1.5rem;
}

.template {
    margin-top: 1rem;
}

.get-code {
    max-width: max-content;
    margin: 0.75rem 1rem 0;
    border: 1px solid var(--primary-color);
    border-radius: 0.25rem;
    padding: 0.5rem;
    font-size: 0.8rem;
}

.get-code p:nth-of-type(2) {
    margin-block: 0.75rem;
}

.get-code a {
    display: inline-block;
    border-radius: 0.25rem;
    padding: 0.5rem;
    background-color: var(--primary-color);
    color: #fff;
}

.get-code span {
    font-size: 0.85rem;
    font-weight: bold;
}

.get-code pre {
    margin-top: 0.75rem;
    border: 1px solid #141e30;
    border-radius: 1rem;
    padding: 1rem;
    background-color: bisque;
    text-wrap: wrap;
}

.btn {
    margin-left: 0.25rem;
    border-radius: 0.25rem;
    padding: 0.25rem 0.75rem;  
    background-color: var(--primary-color);
    color: #fff;
    font-size: 0.85rem;
    cursor: pointer;
}

.btn:hover {
    text-decoration: none;
    color: #ffc700;
}