:root {
    font-family: 'RundText', arial, sans-serif;
    --bg: #fff;
    --text: #333333;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #333;
    background: #ffffff;
}

@font-face {
    font-family: 'RundText';
    font-style: normal;
    font-weight: 300;
    src: url("../assets/fonts/RundText-Light.otf");
}

@font-face {
    font-family: 'RundText';
    font-style: bold;
    font-weight: 600;
    src: url("../assets/fonts/RundText-SemiBold.otf");
}

* {
 box-sizing: border-box;
}

html {
    /* Set the font globally */
    scroll-behavior: smooth;
}

body {
    color: var(--text);
    background-color: var(--bg);
    line-height: 1.5;
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    margin: 0;
    border-top: 3px solid #F9543E;
}

.title {
    font-size: 24px;
    letter-spacing: -0.7px;
    line-height: 1.5;
    text-align:center;
    padding-top:10px;
    padding-bottom:10px;
    border-bottom: 2px solid #FFC500;
    border-top: 2px solid #FFC500;
    background-color: #FFC500;
    border-radius:5px;

}

strong {
    font-weight: 600;
}

h1 {
    font-size: 25px;
    font-weight: 600;
}

.centered {
    text-align:center;
}

footer {
    font-family: 'RundText';
    padding: 10px;
    font-size: 18px !important;
    font-weight: 300;
    text-align: center;
    border-top:1px solid #DDD;
}

a,
a:visited {
    text-decoration: none;
    color: #F9543E;
}

a:hover {
    color: #FF9C45;
    text-decoration: underline;
}

.wrapper {
    padding:20px;
}

.columns {
    display:flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;

}

.column {
    flex:1;
    text-align:center;
    justify-content: flex-start;
}

.product {
    min-height:10vh;
    margin-top:20px;
    margin-right:10px;
    border:1px solid #DDD;
    border-radius:5px;
}

.products strong {
    font-size:23px;
}

section {
    flex: 1;
    align-items: center;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 60px;
    height: min-content;
    justify-content: center;
    overflow: hidden;
    position: relative;
    width: 100%;
}

section p {
    font-size:20px;
    letter-spacing:-0.5px;
    line-height:1.8em;
    text-align:left;
    color:rgb(136, 136, 136);
}

.subtitle {
     overflow: visible;
     font-family: "RundText", serif;
     color: #888888;
     font-size: 20px;
     letter-spacing: -0.5px;
     line-height: 1.5;
     text-align: center;
}

.logo {
    padding-top:50px;
}

.row {
    font-size: 4vh;
    margin: .1em;
    padding: .3em;
    border-radius: 3px;
    flex: 1;
}

.gap {
    height: 30px;
}


.wrap {
    width:970px;
    text-align:center;
    justify-content:center;
}
label {
    font-size:18px;
    display:block;
    margin-bottom:10px;
}

input,textarea {
    -webkit-appearance:none;
    display:inline-block;
    width:100%;
    line-height:1.4em;
    outline:none;
    border:none;
    padding:15px;
    border-radius:8px;
    font-weight:500;
    font-size:16px;
    background:rgb(242, 242, 242);
    color:rgb(0, 0, 0);
    box-shadow:inset 0 0 0 1px transparent;
    margin-bottom:20px;
}

button {
    appearance: none;
    display: inline-block;
    width: 100%;
    line-height: 1.4em;
    outline: none;
    border: none;
    border-radius: 8px;
    padding: 15px;
    font-weight: 600;
    font-size: 16px;
    background: #F9543E;
    cursor: pointer;
    color: rgb(255, 255, 255);
    z-index: 1;
    opacity: 1;
}
.navigation {
    text-align:center;
    display:flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    border-bottom: 2px solid #FFC500;
    border-top: 2px solid #FFC500;
    border-radius:5px;
}
.navigation li{
    flex:1;
    list-style-type:none;
}
.navigation a {
    font-size:20px;
}

/* smartphones, iPhone, portrait 480x320 phones */
@media (max-width:320px)  {
    .wrapper {
        padding:10px;
    }
    #contact-form {
        flex:1;
        width:300px;
    }

}

/* portrait e-readers (Nook/Kindle), smaller tablets @ 600 or @ 640 wide. */
@media (max-width:481px)  {
    #contact-form {
        flex:1;
        width:300px;
    }
    .wrap {
        width:300px;
        text-align:center;
        justify-content:center;
    }
}

/* portrait tablets, portrait iPad, landscape e-readers, landscape 800x480 or 854x480 phones */
@media (min-width:641px)  {

}
/* tablet, landscape iPad, lo-res laptops ands desktops */
@media (min-width:961px)  {

}

/* big landscape tablets, laptops, and desktops */
@media (min-width:1025px)  {

}

/* hi-res laptops and desktops */
@media (min-width:1281px)  {

}
