* {
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    background: #202020;
    color: #ffffff;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
}

.main-text {
    cursor: pointer;
    font-size: 142px;
    transition: 0.1s ease-out;
}

.main-text:hover {
    transform: scale(110%);
    color: #c42929;
}