@font-face {
    font-family: 'Montserrat';
    src: url(../fonts/Montserrat-VariableFont_wght.ttf);
}
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    font-family: 'Montserrat';
    font-weight: 400;
    font-size: 16px;
    color: #000000;
}
.wrapper {
    display: flex;
    min-width: 100vw;
    min-height: 100vh;
    background: linear-gradient(180deg, #FFFFFF 0%, #FFF0DB 80%);
    justify-content: center;
}
.wrapper_image {
    width: 100%;
    background-image: url(../img/wrapper_bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.container {
    margin: auto;
    margin-top: 0px;
    width: fit-content;
    height: fit-content;
}

h1, h2, p {
    text-align: center;
}
h1 {
    font-family: 'Montserrat';
    font-weight: 800;
    font-size: 40px;
    margin: 42px 0px 48px 0px;
}
.container .link-logo {
    display: block;
    text-align: center;
    width: 100%;
    height: 114px;
}
.container .link-logo img {
    object-fit: contain;
    height: 100%;
    max-height: 100%;
    max-width: 100%;
}
h2  {
    font-family: 'Montserrat';
    font-weight: 600;
    margin: 0px;
    margin-top: 32px;
}
p {
    margin: 4px 0px;
}
.email {
    color: inherit;
    text-decoration: none;
}
.email:hover {
    text-decoration: underline;
}
.btn-box {
    display: flex;
    margin-top: 40px;
    gap: 20px;
    justify-content: center;
}
.btn-box a {
    display: flex;
    background: #141E1F;
    border-radius: 12px;
    width: 215px;
    height: 90px;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
    color: #D4D4D2;
    text-decoration: none;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.4);
}
.btn-box a:hover {
    background: #000000;
    transition: background 0.3s linear;
}
.btn-box a img {
    margin-right: 12px;
}
.android {
    width: 38px;
    height: auto;
}
.ios {
    width: 45px;
    height: auto;
}
.btn-box a p {
    font-size: 16px;
    text-align: left;
}
.btn-box a p span {
    display: block;
    font-size: 27px;
    font-weight: 500;
}