* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: ui-serif;
    font-size: 1em;
}

#app {
    max-width: 1200px;
    margin: 0 auto;
}

.kampanyaItemArticle,
.krediItemArticle {
    padding: 10px;
    transition: transform ease-in 0.2s, box-shadow ease-in-out 0.1s;
    box-shadow: 0 5px 8px 0 black;
    height: max-content;
    min-height: 150px;
    display: grid;
    gap: 0;
    align-content: start;
}

.kampanyaDetaySection {
    padding: 10px;
    text-align: justify;
}

.kampanyaDetaySection p {
    margin-bottom: 10px;
}

.basvuruLink {
    text-decoration-line: none;
    color: black;
    text-align: end;
    font-weight: 700;
    grid-area: 1/1;
    margin-bottom: 10px;
}

.basvuruLink:hover {
    text-decoration-line: underline;
    color: var(--mainColor);
}

.kampanyaItemArticle:hover {
    transform: translateY(5px);
    box-shadow: 0 5px 8px black;
}

header {
    position: sticky;
    display: flex;
    gap: 10px;
    box-shadow: 0 3px 8px 0 black;
    height: 40px;
    align-items: center;
}

li {
    list-style: none;
    margin-left: 50px;
    margin-bottom: 10px;
}

nav {
    display: flex;
    gap: 10px;
}

main {
    position: relative;
    top: 10px;
}

.banka {
    text-transform: capitalize;
    color: var(--mainColor);
    border-bottom: 2px solid;
    font-weight: 700;
    grid-area: 1/1;
}

.kampanyaDetaySection .baslik {
    border-bottom: 3px solid;
    text-align: start;
}

.kaynak a {
    font-weight: 300;
}

.tag {}

.tag::before {
    content: "Etiketler:";
}

.donem {
    white-space: pre-wrap;
}

.kampanyaSection,
.krediSection {
    display: grid;
    grid-template-columns: repeat(auto-fill, 292px);
    gap: 10px;
}


header a {
    text-decoration: none;
    color: black;
}

header a:hover {
    text-decoration: underline;
    color: hsl(208 91% 34% / 1);
    font-weight: 700;
}

.krediOrani::before {
    content: "Kredi Oranı: ";
}

.maxLimit::before {
    content: "Üst Limit: "
}

.minLimit::before {
    content: "Alt Limit: "
}

.minTaksit::before {
    content: "Alt Taksit: "
}

.maxTaksit::before {
    content: "Üst Taksit: "
}

:root {
    --mainColor: hsl(208deg 90.16% 35.88%);
    --mainBackgroundColor: hsl(208 95% 95% / 1);
    --boxShadow: 0 3px 4px hsl(208deg 90.16% 35.88%);
}

@media only screen and (max-width: 600px) {
    .kampanyaSection {
        justify-content: center;
        grid-template-columns: repeat(auto-fill, 100%);
    }

    .basvuruLink {
        text-decoration-line: underline;
        color: var(--mainColor);
    }
}