@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

@import url('/styles/navbar.css');
@import url('/styles/main.css');
html, body {
    height: 100vh;
    padding: 0;
    margin: 0;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

#main {
    display: flex;
    flex-direction: column;
}

body.light-theme {
    background: rgba(1, 1, 1, 0.9);
    color: black;
}

body.dark-theme {
    background: rgba(0, 0, 0, 0.9);
    color: white;
}

.container {
    display: flex;
    flex-wrap: wrap;
    font-family: "Open Sans", serif;
    align-items: center;
    justify-content: center;
}

/*---RESPONSIVE DESIGN: ---*/


