*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body{
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #fff;
}

p{
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    padding: 0 20px;
}

#desktop,
#mobile{
    text-decoration: none;
    color: #000;
    font-size: 4rem;
    transition: 0.3s ease;
    margin: 0 30px;
    margin-bottom: 40px;
}

#desktop:hover,
#mobile:hover{
    transform: scale(1.15);
}

body a{
    display: inline-flex;
}

/* Mobile */
@media (max-width: 768px){

    p{
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    #desktop,
    #mobile{
        font-size: 3.5rem;
        margin: 0 18px;
    }

}

/* Small Phones */
@media (max-width: 480px){

    p{
        font-size: 1.25rem;
        padding: 0 15px;
    }

    #desktop,
    #mobile{
        font-size: 3rem;
        margin: 0 15px;
    }

}