html, body {
    padding: 0;
    margin: 0;
    scroll-behavior: smooth;
}

:root {
    --primary: #ffa4f2;
    --secondary: #000;
    --bg-light: #d6d6d6;
    --bg-med: #b3b3b3;
    --bg-dark: #292c34;
    --border-regular: 1px solid black;
    font-family:'Courier New', Courier, monospace;
}

body {
    background-color: var(--bg-dark);
}

h3, h4 {
    line-height: 0%;
}

footer {
    color: white;
    text-align: center;
    padding: 50px 0px 50px 0px;
}

header {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 1px solid var(--primary);
}

.header-logo {
    width: 75px;
    height: 75px;
}

.header-icon-wrapper {
    display: flex;
    flex-direction: row;
    gap: 20px;
    padding: 20px 0px 20px 0px;
}

.header-text {
    display: flex;
    flex-direction: column;
    align-items: space-around;
}

nav {
    padding-bottom: 10px;
}

nav > * {
    margin-right: 20px;
}

nav:first-child {
    padding-left: 5px;
}

.nav-item {
    color: white;
    text-decoration: none;
    padding: 0px 5px 2px 0px;
    display: inline-block;
    position: relative; 
    transition: background-color 0.5s ease, color 0.5s ease;
    overflow-wrap: break-word;
    word-break: break-all;
}

.back-to-top {
    margin-top: 15px;
    color: black;
}

.inline-link {
    color: black;
    text-decoration: underline;
}

.nav-item::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    display: block;
    background: var(--primary);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease-in-out; 
}

.nav-item:hover {
    color: var(--primary);
}

.nav-item:hover::after {
    width: 100%;
}

.header-title {
    line-height: 0%;
}

.header-title, .header-mini {
    color: white;
}

.header-mini {
    font-size: 0.9em;
}

.content-header {
    border-bottom: 2px dotted var(--primary);
    padding-bottom: 5px;
    max-width: 40%;
}

.content-section-anchor {
    padding: 20px 0px 20px 0px;
}

.content-section {
    border: 3px solid var(--primary);
    box-shadow: 0px 0px 22px -3px var(--primary);
    background-color: var(--bg-light);
    border-radius: 25px;
    padding: 0px 25px 25px 25px;
}

.content-section-inner {
    padding: 2px 0px 2px 0px;
}

.hardware-list {
    width: 100%;
    text-align: left;
}

.hardware-list tr:nth-child(even) {
    background-color: var(--bg-med);
}

.hardware-list tr:hover {
    color: white;
    background-color: var(--bg-dark)
}

.hardware-list tr:hover a {
    color: white;
    transition: none;
}

.hardware-list tr th {
    color: white;
    background-color: var(--bg-dark);
}

th, td {
    padding: 5px 5px 5px 5px;
}

.topology-img {
    border: 2px solid black;
    border-radius: 25px;
    width: 100%;
}

.section-services-wrapper {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-gap: 50px;
}

.section-services-icon {
    height: 100px;
}

.section-services-tile {
    text-align: center;
}

.section-services-tile-header {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    text-align: left;
}

.visor-mobile-demo {
    border: 2px solid black;
    border-radius: 25px;
    height: 500px;
}

.visor-inner {
    display: flex;
    flex-direction: row;
    gap: 20px;
    padding-top: 20px;
}

.hero-temp {
    width: 100%;
    padding-top: 25px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-temp-images {
    height: 500px;
    width: 350px;
    object-fit: fill;
    border: 2px solid black;
    border-radius: 25px;
}