@import url("https://fonts.googleapis.com/css2?family=Source+Code+Pro:wght@300;400;500&display=swap");
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond&family=Montserrat&display=swap');

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}
body {
  width: 100%;
  height: 100%;
  margin: 0px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;

  font-family: Montserrat, Arial, sans-serif;
  font-size: 24px;
/*  font-weight:bold;*/
  background-color: #fff;
  color: #202020;
  text-align: justify;
}
#main {
  width: 100%;
  max-width: 100%;
  height: 100%;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.headerTop {
  height: 40px;
  width: 100%;
  color: #fc0;
  background-color: #222;
  text-align: left;
  padding-top: 5px;
  padding-bottom: 5px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border-bottom: solid 1px #fff;
  flex-shrink: 0;
}
.headerTop:hover {
  background-color: #860;
}
.header {
  width: 100%;
  height: 40px;
  align-items: center;
  display:flex;
  justify-content:space-between;
}
.header img {
  width: 40px;
  height: 40px;
  vertical-align: middle;
}
.hr {
  width:30%;
  background-color:#888;
  height:3px;
  margin-bottom: 5vh;
}

.row {
  padding-left: 20%;
  padding-right: 20%;
  text-align: center;
}

#upButton {
  right: 2vw;
  top: 80px;
  display: none;
  position: absolute;
  border-radius: 20px;
  width: 40px;
  height: 40px;
}



a {
  color: inherit;
  text-decoration:none;
}

.center {
  text-align: center;
}
.left {
  text-align: left;
}
.right {
  text-align: right;
}

.pointer {
  cursor: pointer;
}
.pointer:hover {
	opacity:0.8;
}
.pointer.underlined {
  text-decoration: underline;
}

.mt3 {
  margin-top: 3vh;
}
.mt5 {
  margin-top: 5vh;
}
.mt10 {
  margin-top: 10vh;
}
.mt20 {
  margin-top: 20vh;
}
.mb1 {
  margin-bottom: 1vh;
}
.mb5 {
  margin-bottom: 5vh;
}
.mb10 {
  margin-bottom: 10vh;
}
.mb20 {
  margin-bottom: 20vh;
}

.blink {
  animation: blinker 1.5s step-start infinite;
  display:inline-block;
  width:16px;
}

@keyframes blinker {
  50% {
    background-color: #fc0;
  }
}

strong {
  color: rgb(238, 191, 2);
}
.home {
  background-color: #222;
}
#topMenu {
  display: none;
}

p {
  padding-left: 5px;
  padding-right: 5px;
  line-height: 1.5em;
}
ul li {
  margin-bottom: 1vh;
  padding-right: 5px;
  color: #444;
}
.claim {
  color: #202020;
  font-size: 24px;
}
.mainClaim {
  color: #202020;
  font-size: 32px;
}

.action {
  display: inline-block;
  color: rgb(238, 191, 2);
  width: 25%;
  margin: 2%;
  max-width: 200px;
  min-width: 140px;
  border-radius: 5%;
  border-width: 1px;
  border-style: solid;
  border-color: #fc0;
  padding: 10% 10%;
}
.action:hover {
  opacity: 0.8;
  background: #eee;
}
.action img {
  width: 60%;
}
.sideBySide {
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
}
.sideBySide.wrap {
  flex-wrap: wrap;
}
.sideBySide.reverse {
  flex-wrap: wrap-reverse;
}
.sideHalf {
  width: 30vw;
}
.sideHalf img {
  width: 30vw;
  height: 45vw;
  /* object-position: left bottom; */
  object-fit: cover;
}

.imgSpec {
  width: 25vw;
}

.sample {
  width:100%;
  color: #fc0;
  background-color: #1e1e1e;
  line-height: 1.5em;
  font-weight:normal;
  font-family: "Source Code Pro", monospace;
  font-size: 16px;
}
.sampleBlock {
  margin-left:20%;
}
ul.desc li {
  font-weight: 200;
}
.detail {
  margin-top: 20px;
  font-size: 18px;
  color: #000;
  font-family: Montserrat, Arial, sans-serif;
  /* font-family: 'EB Garamond', serif; */
  font-weight: lighter;
  background-color: #f2f2f2;
  padding: 10px;
  border-radius: 10px;
}

.imgExtraWidth {
  width:60%;
}
.imgFullWidth {
  width:50%;
}
.imgHalfWidth {
  width:25%;
}

.footer {
  font-size:14px;
  display:flex;
  align-items: center;
}
@media all and (max-width: 1536px) {
  .imgExtraWidth {
    width:80%;
  }  
  .imgFullWidth {
    width:70%;
  }
  .imgHalfWidth {
    width:35%;
  }
  .sideHalf {
    width: 40vw;
  }
  .sideHalf img {
    width: 40vw;
    height: 60vw;
  }
  .imgSpec {
    width: 35vw;
  }
  
}
@media all and (max-width: 1024px) {
  .imgExtraWidth {
    height:600px;
    width:100%;
    object-fit: cover;
  }
  .imgFullWidth {
    width:80%;
  }
  .imgHalfWidth {
    width:60%;
  }
  .imgSpec {
    width: 60%;
  }
  
  .row {
    padding-left: 10%;
    padding-right: 10%;
  }
}
@media all and (max-width: 768px) {
  .row {
    padding-left: 5%;
    padding-right: 5%;
  }
  .sample {
    font-size: 12px;
  }
  .sideHalf {
    width: 100%;
  }
  .sideHalf img {
    width: 100%;
    height: 150vw;
  }
}
@media all and (max-width: 512px) {
  body {
    font-size: 18px;
  }
  .mainclaim {
    font-size:24px;
  }
  .claim {
    font-size:18px;
  }
  .imgExtraWidth {
    height:320px;
    width:100%;
    object-fit: cover;
  }

  .imgSpec {
    width: 100%;
  }
  
  .imgFullWidth,
  .imgHalfWidth {
    width:100%;
  }
  .row {
    padding-left: 0px;
    padding-right: 0px;
  }
  .sample {
    font-size: 10px;
  }
  #upButton {
    top: 100px;
  }
  .footer {
    flex-wrap:wrap
  }
}
