@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@400;700&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'Lexend', sans-serif;
    background-color: #ffffff;
    color: #000000;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

header {
    color: #ffffff;
    background-color: #4268cf;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

main {
    padding: 20px;
    margin: auto 0;
    display: flex;
    flex-direction: column;
}

header h1 {
    margin: 0;
    padding: 20px;
    font-family: 'Lexend', sans-serif;
    font-weight: bold;
    width: 12%;
}
button {
    margin-right: 20px;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Lexend', sans-serif;
    font-weight: bold;
    border: none;
}

.dark-mode {
    background-color: #202020;
    color: #ffffff;
}
