@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cabin+Sketch&display=swap');

* {
    padding: 0;
    margin: 0;
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-image: url('/images/background.jpg');
    background-size: cover;
    background-repeat: no-repeat;
}

.active {
    background-color: #364582;
}

.logo {
    color: #a0aec0;
    font-family: 'Cabin Sketch', cursive;
    text-decoration: none;
    font-size: 2em;
}

h1 {
    font-size: 30px;
}

.nav-link {
    margin: 0 10px;
    border-radius: 10px;
    padding: 10px;
    transition: background-color 0.2s, color 0.2s;
    color: #cbd5e0
}

.nav-link:hover {
    background-color: #364582;
    color: white
}

.card {
    box-shadow: 0 0.2em 0.3em rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}
