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

.root {
    height: 100vh;
    width: 100%;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    background: linear-gradient(rgb(94, 9, 94), rgb(190, 0, 190));

    text-align: center;
}

.root h1 {
    font-family: 'Preahvihear', sans-serif;

    font-size: 5rem; 
}

.root h2 {
    font-family: 'Preahvihear', sans-serif;

    font-size: 4rem;
}

.root p {
    font-family: 'Preahvihear', sans-serif;
    font-size: 1.5rem;
}

.root i {
    font-size: 2rem;
    padding: 0 10px;
}

.root i:hover {
    font-size: 2.2rem;

    text-shadow: pink 5px 5px 20px;
}

a {
    text-decoration: none;
    color: black;
    font-family: 'Preahvihear', sans-serif;
}

@media (max-width:600px){
    .root h1 {
        font-size: 3rem; 
    }

    .root h2 {
        font-size: 2rem; 
    }
    .root p {
        font-size: 1rem;
    }
}