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

img {
    display: flex;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@font-face {
    font-family: 'RustyHooks';
    src: url('/assets/RustyHooksRegular.ttf') format('truetype');
  }

body {
    font-size: 150%;
    font-family: system-ui;
}

h1, h2, h3 {
    font-family: 'RustyHooks';
    margin-bottom: 5px;
}

table {
    width: 100%;
    text-align: left;
}

tr {
    display: flex;
    width: 100%;
    gap: 15px;
    align-items: center;
}

tr:not(:last-child) {
    margin-bottom: 15px;
}

td, th {
    min-width: 200px;
    flex: 1;
}

section:not(#hero) {
    padding-block: 2.25vw;
}

.page-width {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(25px, 3vw, 65px);
}

.container {
    border-radius: 8px;
    border: 3px dashed black;
    overflow: hidden;
}

underline {
    position: relative;
    display: inline-block;
}

underline::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: -75%;
    left: 0;
    display: block;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='358' height='16' viewBox='0 0 358 16' fill='none'%3E%3Cpath d='M75.3783 15C75.2126 14.8691 80.4898 14.3527 83.0536 14.1319C88.0387 13.7024 93.0215 13.3856 98.0026 12.932C111.098 11.7403 124.422 11.1589 137.632 10.6232C171.541 9.24934 232.204 5.01538 265.345 10.9862C266.987 11.282 261.91 10.9353 260.193 10.9078C257.371 10.8631 254.551 10.7983 251.729 10.7464C242.524 10.5778 233.242 10.2779 224.036 10.325C194.37 10.476 164.598 9.75071 134.939 10.4003C126.014 10.5961 117.118 11.0025 108.19 11.1596C103.018 11.2505 103.25 11.3275 97.9045 11.2213C95.587 11.1752 89.1609 11.5832 90.9938 10.7518C94.222 9.28699 104.312 9.65337 108.214 9.35451C126.032 7.99147 143.805 6.2115 161.714 5.25521C207.633 2.80324 254.38 2.79747 300.404 3.82331C319.231 4.24294 338.253 2.61973 357 3.9312C311.512 0.49308 264.23 0.98123 218.493 1.08062C166.997 1.19257 115.559 1.20003 64.0622 1.83508C42.9208 2.09561 22.2058 4.45184 1 4.27985' stroke='%23ff4747' stroke-width='2' stroke-miterlimit='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

highlight {
    padding: 5px;
    white-space: nowrap;
    background-color: #ff4747;
}

.secondary-background {
    background: #ff4747;
    color: white;
}

.accent-background {
    background: #86da7a;
}
 
.flex {
    display: flex;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-col {
    flex-direction: column;
}

.flex-row {
    flex-direction: row;
}

.full-height {
    height: 100%;
}

.half-width {
    width: 50%;
}

.full-width {
    width: 100%;
}

.align-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.text-center {
    text-align: center;
}

.padding-small {
    padding: 1rem;
}

.padding-medium {
    padding: 1.5rem;
}

.padding-large {
    padding: 2rem;
}

.padding-block-small {
    padding-block: 1rem;
}

.padding-block-medium {
    padding-block: 1.5rem;
}

.padding-block-large {
    padding-block: 2rem;
}

@media (max-width: 768px) {
    .half-width\:mobile {
        width: 50%;
    }

    .full-width\:desktop {
        width: 100%;
    }
}

@media (min-width: 769px) {
    .half-width\:desktop {
        width: 50%;
    }

    .full-width\:desktop {
        width: 100%;
    }
}