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

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

:root {
    --background-color-base : #1e202a;
    --text-color-base: #cbcbd8;
}

.light-mode {
    --background-color-base :#cbcbd8 ;
    --text-color-base: #1e202a;
}
body {
    background: var(--background-color-base);
    overflow-x: hidden;

}
h1 {
    font-size: 3vh;
}
span {
    font-size: 2.5vh;
    align-self: center;
}
.material-symbols-rounded {
    font-size: 2.5vh;
}