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

body {
    background-color: #f7f7f7;
    color: #888;
    font-family: Helvetica, sans-serif;
    letter-spacing: 0.005em;
}

.wrap {
    width: 100%;
    height: 100svh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 35px;
    width: 100%;
    max-width: 400px;
}

.subtitle {
    font-size: 14px;
    font-weight: 400;
    color: #999;
    text-align: center;
    line-height: 1.5;
}
.divider {
    width: 50px;
    display: block;
    height: 1px;
    background-color: #ccc;
}

.wrap img {
    width: 100%;
    height: 100%;
    display: block;
    max-width: 180px;
}

@media (max-width: 768px) {

    .wrap img {
        max-width: 140px;
    };
    .subtitle {
        font-size: 12px;
    };
    
}