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

html, body {
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    font-family: 'Lato', sans-serif;
    color: #222222;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 600px;
    padding: 20px;
    transform: translateY(-20px);
}

.container .logo {
    max-width: 350px;
    width: 100%;
    height: auto;
    margin-bottom: 25px;
    display: block;
}

h1 {
    font-size: 1.4rem;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #111111;
}

h3 {
    font-size: 1.05rem;
    font-weight: 400;
    color: #555555;
    margin: 5px 0;
}

.line {
    width: 300px;
    height: 1px;
    background-color: #cccccc;
    margin: 15px auto;
}

p {
    font-size: 0.9rem;
    color: #777777;
    margin-top: 5px;
}

footer {
    position: absolute;
    bottom: 25px;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 0.75rem;
    color: #999999;
    letter-spacing: 1px;
    font-family: sans-serif;
}