@font-face {
  font-family: 'Open Sans semi';
  src: url('./fonts/OpenSans-SemiBold.ttf');
}

@font-face {
  font-family: 'Open Sans';
  src: url('./fonts/OpenSans-Regular.ttf');
}

@font-face {
  font-family: 'Open Sans bold';
  src: url('./fonts/OpenSans-Bold.ttf');
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  font-family: 'Open Sans'
}


body {
  background-color: #f1f5fa;
}

.modal-content {
  text-align: center;
}

.modal-content p {
  margin-bottom: 75px;
}

.modal-content h2 {
  color: #0052a5;
  font-size: 20px;
  line-height: 32px;
  text-align: center;
  margin-bottom: 50px;
  font-family: 'Open Sans semi';
  margin-top: 105px;
}

p {
  text-align: center;
}

.modal-wrapper {
  background-color: #fff;
  width: 100%;
  max-width: 650px;
  padding: 50px;
  border-radius: 15px;
  margin: 0 30px;
  box-shadow: 0px 0px 5px #A4B7CB9E;
}

.centring-container {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gov-logo-wrapper {
  display: flex;
  justify-content: center;
}

.gov-logo-wrapper h1 {
  margin-left: 10px;
  font-size: 30px;
  font-family: 'Open Sans Bold';
  line-height: 36px;
}

.extended-logo {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 40px;
}

.extended-logo::before {
  content: '';
  position: absolute;
  height: 44px;
  width: 2px;
  left: 20px;
  background-color: #d5233f;
}

@media only screen and (min-width: 1024px) {
  .mobile-only {
    display: none;
  }
}

@media only screen and (max-width: 1024px) {
  .desktop-only {
    display: none;
  }

  .modal-content p {
    margin-bottom: 50px;
  }

  .modal-content h2 {
    margin-top: 70px;
  }
}