@font-face {
  font-family: 'NewMSLondon';
  src: url('./fonts/NewM_SLondon-Hairline.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: 'NewMSLondon';
  src: url('./fonts/NewM_SLondon-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'NewMSLondon';
  src: url('./fonts/NewM_SLondon-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'NewMSLondon';
  src: url('./fonts/NewM_SLondon-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'NewMSLondon';
  src: url('./fonts/NewM_SLondon-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'NewMSLondon';
  src: url('./fonts/NewM_SLondon-BoldCondensed.ttf') format('truetype');
  font-weight: 700;
  font-stretch: condensed;
  font-style: normal;
}

@font-face {
  font-family: 'NewMSLondon';
  src: url('./fonts/NewM_SLondon-LightItalic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
}

@font-face {
  font-family: 'NewMSLondon';
  src: url('./fonts/NewM_SLondon-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: 'NewMSLondon';
  src: url('./fonts/NewM_SLondon-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
}

@font-face {
  font-family: 'NewMSLondon';
  src: url('./fonts/NewM_SLondon-HairlineItalic.ttf') format('truetype');
  font-weight: 100;
  font-style: italic;
}

body {
  font-family: 'NewMSLondon', sans-serif;
  background-color: #521536;
  color: white;
}

.main-wrap {
  width: 66vw;
  margin: 0 auto;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  border: 10px solid #E3C83D;
  border-radius: 10px;
  padding: 30px 0 40px;
}

.full {
  flex: 1 100%;
}

.left,
.right {
  flex: 50%;
}

.buttons {
  margin-top: 30px;
}

button {
  background-color: #e3c83d;
  border: 0;
  width: 200px;
  padding: 10px;
  font-family: 'NewMSLondon';
  font-size: 16px;
  cursor: pointer;
}

.entry {
  display: flex;
  flex-direction: column;
  margin: 0 auto 20px;
  width: 50%;
}

.entry strong {
  font-size: 25px;
}

@media only screen and (max-width: 700px) {

  .main-wrap {
    width: 90vw;
  }

  .left, .right {
    flex: 100%;
  }

  .entry {
    width: 75%;
  }

  button {
    width: 90%;
    margin-bottom: 20px;
  }

}