@import url('https://fonts.googleapis.com/css2?family=Poppins&family=REM&display=swap');
/* To apply the following font, use
font-family: 'Poppins', sans-serif;
font-family: 'REM', sans-serif;
*/

body {
    margin: 0;
    background: #dfe7f5;
}

.footer {
    color: black;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

.header {
    font-size: 50px;
    font-family: 'REM', sans-serif;
    text-align: center;
}

.primary-button {
    background: #333333;
    color: white;
    padding: 12px;
    display: block;
    text-decoration: none;
    transition: background 0.3s;
    font-family: 'Poppins', sans-serif;
}
.primary-button:hover {
    background: #dfe7f5;
    color: black;
    transition: background 0.3s color 0.3s;
}