:root {
    --first-color: rgb(39, 180, 245);
    --white: #fff;
    --gray-text: #F2F2F295;
}

body{
    font-family: "Montserrat", sans-serif;
}

.about-me-life-pos{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 150px 0 150px 0;
}

.about-me-life h1{
    color:var(--white);
    font-weight: 400;
    font-size: 45px;
}

.about-me-life p{
    color: var(--gray-text);
    font-size: 20px;
    width: 800px;
    margin: 30px 0 0 0;
    line-height: 1.8;
}

@media (max-width: 800px){
    .about-me-life p {
        width: 480px;
        font-size: 18px;
    }
}