/*////////////////////////////////////////////////////////////////////
// Copyright 2025 (c) Yanko Lemoine
//
// This program and the accompanying materials are made
// available under the terms of the Eclipse Public License 2.0
// which is available at https://www.eclipse.org/legal/epl-2.0/
//
// SPDX-License-Identifier: EPL-2.0
////////////////////////////////////////////////////////////////////*/

#contacts {
    h2 {
        font-size: 4vw;
    }
    h3 {
        font-size: 2vw;
        text-shadow: 0px 0px 5px black;
    }
    h4 {
        font-size: 1.4vw;
        
        text-shadow: 0px 0px 0.5px black;
    }

    a {
        color: aqua;
    }
    a:hover {
            color: white;
        }
}

@media screen and (max-width: 1280px) {
    #contacts {
        h2 {
            font-size: 6vw;
        }
        h3 {
            font-size: 3vw;
        }
        h4 {
            font-size: 2.3vw;
        }
    }
}

@media screen and (max-width: 680px) {
    /* SMARTPHONES */
    
    #contacts {
        h2 {
            font-size: 8vw;
        }
        h3 {
            font-size: 5vw;
        }
        h4 {
            font-size: 2.8vw;
        }
    }
}