@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');


*{margin: 0;padding: 0;font-family: "Noto Sans", sans-serif;}
body {
    min-height: 100vh;
    background: #f3f3f3;
}
@media(min-width:639px){
	.mainwrapper {
    max-width: 360px;
    margin: 0 auto;
    overflow-x: hidden;
    background: #fff;
}
}
header {
    padding: 15px 0;
    text-align: center;
    background: #fff;
        box-shadow: 0px 0px 60px 10px rgba(0, 0, 0, 0.1);
}

.container {
    padding: 0 15px;
    max-width: 100%;
    margin: 0 auto;
}

header img {
    width: 100%;
    max-width: 70px;
}
img{
	max-width: 100%;
}
.main-container {
    min-height: 100vh;
    position: relative;
}

footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: #E93125;
    padding: 10px 0;
    text-align: center;
}

footer p {
    font-size: 30px;
    line-height: 34px;
    font-weight: 600;
    color: #fff;
}
.main-container.home {
    background: rgb(0 0 0 / 75%);
}
section.main-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: calc(90vh - 55px);
}
.home-pop {
    padding: 15px;
    background: #fff;
    border-radius: 5px;
    text-align: center;
}

.home-pop a.primarybutton {
    text-align: center;
    background: linear-gradient(90deg, #F8A418 0%, #E93125 100%);
    text-decoration: none;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    border: 1px solid #e93624;
    padding: 8px;
    font-size: 30px;
    line-height: 30px;
    font-weight: 600;
    border-radius: 40px;
    max-width: 65%;
    margin: 0 auto;
    margin-top: 10px;
}

.home-pop a.primarybutton span {
    line-height: 0;
    margin-right: 6px;
}

/*Game HTML */
#camera-container {
      position: relative;
      display: inline-block;
      width: 300px;
      height: 300px;
      margin-bottom: 20px;
    }

    video, canvas, .frame {
      width: 300px;
      height: 300px;
      border-radius: 8px;
    }

    .frame {
      position: absolute;
      top: 0;
      left: 0;
      pointer-events: none;
    }

/*    button, a {
      margin: 10px;
      padding: 10px 20px;
      font-size: 18px;
      text-decoration: none;
      color: white;
      background: #007BFF;
      border: none;
      border-radius: 6px;
      cursor: pointer;
    }
*/
    a#download-btn, a#shareBtn {
      display: none;
    }

    section.main-game {
    width: 100%;
    padding: 30px 0;
    text-align: center;
}
div#capture-btn {
    cursor: pointer;
    display: inline-block;
    max-width: 150px;
    margin: 0 auto;
    text-align: center;
}

span.capicon {
    display: flex;
    border: 2px solid #E93125;
    box-shadow: 0px 4px 12px 0px #00000052;
    width: 70px;
    height: 70px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 10px;
}

div#capture-btn p {
    font-size: 25px;
    text-align: center;
    font-weight: 600;
}
a#download-btn {background: linear-gradient(90deg, #00D609 0%, #005C04 100%);color: #fff;text-decoration: none;font-size: 18px;font-weight: 600;padding: 6px 0px;border-radius: 30px;}

button#retake-btn {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    padding: 6px 20px;
    border-radius: 30px;
    border: none;
    background: linear-gradient(180deg, #FF0000 1.29%, #B80000 97.05%);
    margin-bottom: 10px;
}

a#shareBtn {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    padding: 8px 40px;
    border-radius: 30px;
    background: linear-gradient(180deg, #3887FE 1.29%, #005EB8 97.05%);
}
.main-btns {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
        min-height: 180px;
}

.main-btns a#shareBtn {
    margin-bottom: 30px;
}

.main-btns button#retake-btn, .main-btns a#download-btn {
    width: 150px;
}
.main-btns img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}
section.main-game {
    background-image: url(images/bgimg.png);
    background-size: cover;
    background-position: bottom center;
}
@media(max-width:767px){
    .main-container{
        min-height:auto;
    }
    section.main-game {
    height: 570px;
}
footer {
    position: static;
}
}