@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');

* {
    padding: 0;
    margin: 0;
    border: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

html {
    width: 100%;
    height: 100%;
}
a {
    text-decoration: none;
    color: inherit;
}
body {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    font-weight: 400;
    color: #333333;
}

.image-container{
    padding-bottom: 0;
}
.outer-container {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.container {
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.text-wrap {
    text-align: center;
    font-size: 30px;
}

.text-wrap > h1 {
    font-size: 150px;
    font-weight: 600;
    padding-bottom: 20px;
    line-height: 175px;
}

.text-wrap > p {
    padding-bottom: 35px;
}

.text-wrap > a {
    display: inline-block;
    font-size: 20px;
    border: #333333 2px solid;
    background-color: #333333;
    color: #fff;
    font-weight: 500;
    border-radius: 25px;
    padding: 10px 30px;
    transition: 0.2s ease-in-out all;
}

.text-wrap > a:hover {
    background-color: #fff;
    color: #333333;
}