* {
    padding: 0px;
    margin: 0px;
    border: 0px;
}

*,
*:before,
*:after {
    box-sizing: border-box;
}

:focus,
:active {
    outline: none;
}

a:focus,
a:active {
    outline: none;
}

html,
body {
    height: 100%;
    min-width: 320px;

    min-height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;

    >main {
        flex: 1 1 auto;
    }
}

body {
    color: #000;
    line-height: 1;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    text-rendering: optimizeLegibility;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

input,
button,
textarea {
    font-family: "Inter", sans-serif;
    font-size: inherit;
}

button {
    cursor: pointer;
    color: inherit;
    background-color: inherit;
}

a {
    color: inherit;
}

a:link,
a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

ul li {
    list-style: none;
}

img {
    vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: inherit;
    font-size: inherit;
}

.container {
    position: relative;
    width: 100%;
    height: 100%;
    flex-grow: 1;
    max-width: 907px;
    padding: 25px 16px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.banner {
    overflow: hidden;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fff;
    min-height: 100vh;
}

.banner__img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%);
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    max-width: 907px;
    margin-left: auto;
    margin-right: auto;
}

.banner__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.banner__link {
    position: absolute;
    z-index: 10;
    right: 45px;
    bottom: 41px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
    color: #DA8045;
    transition: color 0.3s ease;
}

.banner__link:hover {
    color: #de6310;
}

.banner__title {
    position: relative;
    z-index: 5;
    text-align: center;
    margin-top: auto;
    font-family: "Dancing Script", cursive;
    font-size: 96px;
    letter-spacing: -0.02em;
    line-height: 1;
    color: #DA8045;
}

@media (max-width: 768px) {
    .banner__title {
        font-size: 70px;
    }
}

@media (max-width: 768px) {
    .banner {
        padding-bottom: 40px;
    }

    .banner__link {
        position: static;
    }

    .banner__title {
        font-size: 54px;
    }
}