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

body {   
    margin: 0;
    padding: 0;
    height: 100vh;
    background-color: rgb(25, 25, 25);
    color: rgb(225, 225, 225);
    display: flex;
    align-items: center;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.hero-content {
    padding-left: 10%;
}

.hero-content a i{
    font-size: 24px;
    color: rgb(125, 125, 125);
    padding-right: 12px;
}

@media screen and (max-width: 600px) {
    h1 {
        font-size: 24px;
    }

    .name-text span{
        color: rgb(100, 150, 255);
    }

    p {
        font-size: 12px;
        color: rgb(125, 125, 125);
    }
}

.name-text span{
    color: rgb(100, 150, 255);
}

p {
    line-height: 80%;
    color: rgb(125, 125, 125);
}
  