* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.heading {
    font-size: 10rem;
    font-weight: 900;
    background-image: url('asseys/pexels-mccutcheon-1149019.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-clip: text ;
    color: transparent;
    -webkit-text-stroke: 2px white;
}

.p {
    font-size: 2rem;
    color: white;
    margin-top: 2rem;
}