* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    max-height: 100vh;
    background-image: url('images/bg.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    font-family: Montserrat, -apple-system, BlinkMacSystemFont, "Segoe UI", "Myriad Pro", Myriad, Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-weight: 500;
    overflow: hidden;
    position: relative;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    width: 30%;
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

h1 {
    color: #3455A2;
    font-size: 36px;
    font-weight: 500;
    line-height: 44px;
    letter-spacing: 0;
    text-align: center;
}

footer {
    position: absolute;
    bottom: 20px;
    width: 100%;
    color: #E52421;
    font-size: 24px;
    font-weight: 500;
    line-height: 29px;
    letter-spacing: 0;
    text-align: center;
}

a {
    color: #E52421;
    text-decoration: none;
    transition: .2s ease-in;
}

a:hover {
    text-decoration: underline;
}
