* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f5f5f5;
}

.content {
    width: 450px;
    background-color: #1f1f1f;
    padding: 32px 36px;
    border-radius: 18px;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.18);
}

.title {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-weight: 700;
    margin-bottom: 18px;
}

.big-text {
    font-size: 36px;
    line-height: 1;
    letter-spacing: -1px;
}

.img-n-app-name {
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon {
    width: 42px;
    height: 42px;
    cursor: pointer;
    transition: transform 0.25s ease;
}

.icon:hover {
    transform: scale(1.075);
}

.app-text {
    font-size: 24px;
    line-height: 1;
    white-space: nowrap;
}

.subtitle {
    max-width: 330px;
    color: #c7c7c7;
    font-size: 17px;
    line-height: 1.45;
}
