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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

html,
body {
    height: 100vh;
    width: 100vw;
    background-color: #1b263b;
    font-family: 'Inter', sans-serif;
}


#app {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 3rem;
}

.card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #778da9;
    border-radius: 0.5rem;
    width: calc((100% / 3) - 4rem);
    max-width: 14rem;
    min-width: 10rem;
    height: 15rem;
    background-color: #415a77;
    margin: 1rem 2rem;
}

.card .card-title {
    color: #e0e1dd;
    font-size: 1.2rem;
}

.card .card-title:hover {
    color: #caf0f8;
    font-size: 1.2rem;
}