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;
}

/*  */

a {
    text-decoration: none;
    color: inherit;
}

body {
    background: url('../images/bg.jpg');
    background-size: cover;
    background-position: center;
}

.backdrop {
    display: flex;
    justify-content: center;
    position: relative;
    min-height: calc(100vh - 250px);
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}
.first-desktop-box {
    height: 250px;
    background-color: #010101;
}
@media (max-width: 520px) {
    .first-desktop-box {
        height: 400px;
    }
    .backdrop {
        min-height: 100vh;
    }
}
.pop-up {
    position: absolute;
    top: 40%;
    width: 50%;
    max-width: 350px;
    background-color: #000;
    border-radius: 12px;
    color: #fff;
    font-size: 24px;
    font-family: 'Arial Black', sans-serif;
    font-weight: bold;
    padding: 30px 60px 20px;
}
.pop-up__title {
    margin-bottom: 30px;
    text-align: center;
}
.pop-up__buttons {
    display: flex;
    gap: 20px;
}
.pop-up__si {
    color: #fff;
    width: 50%;
    text-align: center;
    background-color: #62c375;
    border-radius: 5%;
    padding: 10px 0;
    transition-property: all;
    transition-duration: 200ms;
}
.pop-up__no {
    color: #fff;
    width: 50%;
    text-align: center;
    background-color: #ac4133;
    border-radius: 5%;
    padding: 10px 0;
    transition-property: all;
    transition-duration: 200ms;
}
.pop-up__si:hover,
.pop-up__no:hover {
    transform: scale(1.2);
}
