:root{
  --darker-accent-color: #5893aa;
  --accent-color: #6eb8d4;
  --default-text-color: black;
  --default-font-size: 1em;
  --default-font-size-h1: clamp(1.58rem, 1.1514rem + 1.9048vw, 2.58rem);
  --default-font-size-h1-fixed: clamp(1.5rem, 1.2857rem + 0.9524vw, 2rem);
  --menu-text-size: clamp(1.2rem, 0.9429rem + 1.1429vw, 1.8rem);
  --menu-text-size-fixed: clamp(1.19rem, 1.0571rem + 0.5905vw, 1.5rem);
  --menu-highlight-color: #0b2850;
  --menu-highlight-text-color: #ffffff;
  --ham-menu-top: clamp(2.85em,1vw,3.85em);
  --no-background-color: transparent;
  --card-wraper-background-color: hsla(0, 0%, 80%,.99);
  --content-card-width: clamp(20.9375rem, 10.2232rem + 47.619vw, 45.9375rem);
  --viewport-background-color: #ffffff;
}

*::after *::before{
  box-sizing: border-box;
}

html{
  margin: 0;
  padding: 0;
  scroll-padding-top: 60px;
}

body{
  margin: 0;
  padding: 0;
  display: block;
}

.viewport_text{
  font-family: Arial, Helvetica, sans-serif ;
  font-size: var(--default-font-size);
  line-height: normal;
  font-weight: normal;
  font-style: normal;
  letter-spacing: normal;
  word-spacing: normal;
  color: var(--default-text-color);
}

.viewport{
  /*background-image: image-set(
    "https://images.unsplash.com/photo-1552879890-3a06dd3a06c2?crop=entropy&amp;cs=tinysrgb&amp;fit=max&amp;fm=jpg&amp;ixid=M3wxMTc3M3wwfDF8c2VhcmNofDZ8fGNvbnN0cnVjdGlvbiUyMHNhZmV0eXxlbnwwfHx8fDE3NjQwMDgyODN8MA&amp;ixlib=rb-4.1.0&amp;q=80&amp;w=300" 1x,
    "https://images.unsplash.com/photo-1552879890-3a06dd3a06c2?crop=entropy&amp;cs=tinysrgb&amp;fit=max&amp;fm=jpg&amp;ixid=M3wxMTc3M3wwfDF8c2VhcmNofDZ8fGNvbnN0cnVjdGlvbiUyMHNhZmV0eXxlbnwwfHx8fDE3NjQwMDgyODN8MA&amp;ixlib=rb-4.1.0&amp;q=80&amp;w=600" 2x,
    "https://images.unsplash.com/photo-1552879890-3a06dd3a06c2?crop=entropy&amp;cs=tinysrgb&amp;fit=max&amp;fm=jpg&amp;ixid=M3wxMTc3M3wwfDF8c2VhcmNofDZ8fGNvbnN0cnVjdGlvbiUyMHNhZmV0eXxlbnwwfHx8fDE3NjQwMDgyODN8MA&amp;ixlib=rb-4.1.0&amp;q=80&amp;w=1000" 3x,
    "https://images.unsplash.com/photo-1552879890-3a06dd3a06c2?crop=entropy&amp;cs=tinysrgb&amp;fit=max&amp;fm=jpg&amp;ixid=M3wxMTc3M3wwfDF8c2VhcmNofDZ8fGNvbnN0cnVjdGlvbiUyMHNhZmV0eXxlbnwwfHx8fDE3NjQwMDgyODN8MA&amp;ixlib=rb-4.1.0&amp;q=80&amp;w=2000" 4x
  );*/
  background-color: var(--viewport-background-color);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
  justify-content: space-between;
}

.site-footer{
  background-color: var(--darker-accent-color);
  position: relative;
  width: 100%;
  padding-bottom: 10px;
  padding-top: 60px;
}

.site-header{
  width: 100%;
  height: 28.5em;
}

.site-content{
  margin-top: 3em;
  margin-bottom: 5rem;
  width: 100%;
}

.content-flex{
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.content-card-wrapper:not(:last-child){
  margin-bottom: 2em;
}

.content-card-wrapper:first-child{
  margin-top: 2em;
}

.site-card-flexcolumn{
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 50%;
  padding-top: .15%;
  padding-bottom: .15%;
  align-items: center;
  justify-content: center;
}

.site-card-flexrow{
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 100%;
  padding-top: .15%;
  padding-bottom: .15%;
  padding-left: 1%;
  padding-right: 1%;
  align-items: center;
  justify-content: center;
  column-gap: 22px;
}

.site-card-wrapper{
  background-color: goldenrod;
  margin-bottom: 2%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.no-outline{
  outline: none;
  text-decoration: none;
  border: none;
}

.no-outline:active{
  outline: none;
  text-decoration: none;
  border: none;
}

.no-outline:visited{
  outline: none;
  text-decoration: none;
  border: none;
}

.no-outline:focus{
  outline: none;
  text-decoration: none;
  border: none;
}

.no-transtions{
  transition: none !important;
}

.anchor-scroll-fixed-top{
  scroll-margin-top: 75px;
}
