html,
body,
.wrapper {
  height: 100%;
}

html,
body {
  padding: 0;
  margin: 0;
}

body {
  font: 1rem/1.516 "Montserrat", Arial, sans-serif;
}

.wrapper {
  position: relative;
  background: url(https://source.unsplash.com/vZlTg_McCDo/1920x1080) no-repeat center center/cover;
}
.wrapper:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
}

header,
.content,
footer {
  position: absolute;
}

header,
footer {
  width: 100%;
}

header {
  top: 0;
  text-align: center;
  padding: 20px 0px;
}

.header__logo {
  max-width: 65px;
  fill: #000000;
}
.ring-box{
    display: flex;
    justify-content: center;
}
p{
    font-size: 18px;
    font-weight: 600;
}
.content {
      width: 679px;
    text-align: center;
    color: #000;
    margin-top: 50px;
}
.content h1 {
      margin-bottom: 24px;
      font-size: 45px;
}
.content form {
    margin: auto;
    display: table;
    margin-top: 25px;
}
.content input {
    float: left;
    font-size: 18px;
    border: 1px solid #c1a054;
}
.content input[type=email] {
    padding: 12px;
    background: #fff;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}
.content input[type=submit] {
    padding: 12px 24px;
    color: #ffffff;
    background: #b9a545;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    cursor: pointer;
    transition: all 0.235s ease-in-out;
}
.content input[type=submit]:hover {
    color: #fff;
    background: #000;
}

.countdown {
    margin: auto;
    display: table;
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 60px;
}
.countdown > div {
    float: left;
    min-width: 140px;
}
.countdown span {
    position: relative;
    display: block;
    font-size: 18px;
    text-align: center;
    margin-top: 0px;
    padding-top: 7px;
}
.countdown span:before {
  content: "";
  position: absolute;
  top: -2px;
  right: 0;
  left: 0;
  margin-right: auto;
  margin-left: auto;
  width: 20px;
  height: 1px;
  background: #000;
}
.logo{
  width: 350px;
}
*, *:before, *:after {
    box-sizing: inherit;
    margin: 0;
    padding: 0;
}
.ring-img img{
      height: 316px;
    object-fit: cover;
    border-radius: 10px;
    /* max-width: 100%; */
    width: 100% !important;
}

@media (max-width: 768px) {
.content {
    width: 100%;
}
.ring-img img {
    height: 320px;
}
.countdown {
    font-size: 40px;
    margin-bottom: 40px;
}
}

@media (max-width: 576px) {
.ring-img img {
    height: 235px;
}
.countdown {
  font-size: 25px;
  margin-bottom: 25px;
}
.countdown > div {
    min-width: 95px;
}
.countdown span {
    font-size: 16px;
}
h1{
  font-size: 25px;
}
}

@media (max-width: 400px) {
.ring-img img {
    height: 175px;
}
.countdown {
  font-size: 20px;
  margin-bottom: 20px;
}
.countdown > div {
  min-width: 70px;
}
.countdown span {
    font-size: 13px;
}
.content input[type=submit] {
    padding: 5px 10px;
}
.content input[type=email] {
    padding: 5px;
}
}