* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html, body {
    margin: 0;
    padding: 0;
    min-height: 100% !important;
    height: 100%
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Graphik LC Web, IBM Plex Sans, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-stretch: normal;
    color: #000;
    background-color: #0e1c2c;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: subpixel-antialiased
}

.container {
    padding-left: 30px;
    padding-right: 30px;
    width: 100%;
    max-width: 1140px;
    margin-right: auto;
    margin-left: auto;
}

.content {
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.text {
    width: 100%;
}

.text .big-text {
    color: #fff;
    width: 100%;
    text-align: center;
    font-family: "Arial";
    font-size: 10em;
    display: block;
}

.text .small-text {
    color: #fff;
    width: 100%;
    text-align: center;
    font-family: "Arial";
    font-size: 2em;
    margin-bottom: 60px;
    display: block;
}

.button {
    width: 100%;
    text-align: center;
}

.btn {
    width: auto;
    grid-auto-flow: column;
    column-gap: 1em;
    padding: 0 1.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 2.5rem;
    border-radius: 1.25rem;
    position: relative;
    cursor: pointer;
    background-color: #fff;
    color: #001b36;
    border: 1px solid #001b36;
    line-height: 1;
    text-decoration: none;
    transition: 0.05s;
}

.btn:hover {
    color: #fff;
    background-color:  #001b36;
    border: 1px solid #fff;
}