@font-face {
    font-family: 'Poppins';
    font-weight: 500;
    src: url('../fonts/poppins-latin-500-normal.ttf') format('truetype');
}

body {
    background-color: white;
    font-family: 'Poppins';
    text-align: center;
    transition: background-color 0.5s, color 0.5s;
}

h1 {
    color: black;
    background-color: white;
    font-size: 50px;
    transition: background-color 0.5s, color 0.5s;
}

p {
    color: black;
    background-color: white;
    font-size: 30px;
    transition: background-color 0.5s, color 0.5s;
}

button {
    color: white;
    font-size: 20px;
    background-color: #007BFF;
    padding: 4px 8px;
    border-color: black;
    border-width: 2px;
    border-radius: 10px;
    cursor: pointer;
}

button:hover {
    border-radius: 12px;
}

select {
    color: white;
    font-size: 20px;
    background-color: #007BFF;
    padding: 4px 8px;
    border-color: black;
    border-width: 2px;
    border-radius: 10px;
    cursor: pointer;
}

select:hover {
    border-radius: 12px;
}

#dark-mode-button {
    float: right;
    background-color: rgba(255, 255, 255, 0);
    font-size: 40px;
    padding: 0px 0px;
    margin: 0;
    border-radius: 100px;
    border-color: rgba(255, 255, 255, 0);
    border-width: 0px;
}

#dark-mode-button:active{
    scale: 1.01;
}

.dark-mode {
    transition: background-color 0.5s, color 0.5s;
    background-color: #1f1f1f;
    color: white;
}