/* /* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

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;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

.btn {
  border: none;
  padding: 15px 30px;
  color: #fff;
  border-radius: 0.25rem;
  cursor: pointer;
}

.btn-primary {
  background: #007bff;
}

.btn-danger {
  background: #dc3545;
}

.heading {
  font-size: 2.5rem;
  text-align: center;
  margin-top: 20px;
}

.main {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 30px;
}

.modal > .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal > .header > .title {
  font-size: 1.8rem;
}

.modal > .header > .close-modal {
  cursor: pointer;
  font-size: 30px;
}

.modal > .content {
  margin-block: 15px;
}

.modal > .footer {
  display: flex;
  justify-content: flex-end;
}

#modal-2,
#modal-3 {
  margin-top: 15px;
}

#modal-1 > .header,
#modal-1 > .content,
#modal-1 > .footer {
  max-height: 70vh;
  width: 400px;
  max-width: 100%;
}

#modal-2 > .header,
#modal-2 > .content,
#modal-2 > .footer {
  max-height: 70vh;
  width: 300px;
  max-width: 100%;
}

#modal-3 > .header,
#modal-3 > .content,
#modal-3 > .footer {
  max-height: 70vh;
  width: 200px;
  max-width: 100%;
}
