@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body {
 font-family: "Montserrat", sans-serif;
}

/* TAB-rivi */
.tabs {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
    margin-top: 50px;
}

.tabs a {
    padding: 10px 15px;
    background: #eee;
    text-decoration: none;
    color: #000;
    border-radius: 5px 5px 0 0;
}

.tabs a.active {
    background: #ccc;
    font-weight: bold;
}

/* TAB-sisältö */
.tab-content {
    display: none;
    padding: 0;
}

.tab-content.active {
    display: block;
}

.main {
    padding: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}