@font-face {
    font-family: otsikko;
    src: url(Molle/Molle-Italic.ttf);
}

body {
    background-color: #ffeef2;
    margin: 0;
}

header {
    background-color: #ffdde4;
    padding: 10px;
}

h1 {
    text-align: center;
    font-family: otsikko, sans-serif;
    color: #ff839e;
    font-size: 50px;
    margin: 10px 0;
}

.info {
    text-align: center;
    color: #ff6f9c;
    font-size: 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

a:active {
    text-decoration: none;
}


.container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 40px;
    text-align: center;
}

.artisti {
    background-color: #ffffff;
    color: #ff708f;
    text-align: center;
    padding: 10px;
    display: inline-block;
    border-radius: 20px;
    max-width: 260px;
    box-shadow: 0 5px 10px rgba(255, 137, 137, 0.2);
    margin: 12px;
    font-family: Arial, sans-serif;
    font-size: 15px;
    transition: 0.3s ease;
}

.artisti:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(255, 165, 180, 0.4);
}

img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
}

.nimi {
    font-size: 22px;
    margin-top: 10px;
    font-weight: bold;
}

.katso {
    background: linear-gradient(135deg, #ffb6c9, #ff8fb1);
    color: white;
    border: none;
    padding: 12px;
    margin-top: 12px;
    cursor: pointer;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 15px;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1px;
    transition: 0.25s ease;
    box-shadow: 0 4px 10px rgba(255, 143, 177, 0.3);
}
.katso:hover {
    background: linear-gradient(135deg, #ff9fba, #ff6f9c);
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(255, 143, 177, 0.5);
}

@media (max-width: 700px) {

    h1 {
        font-size: 35px;
    }

    .container {
        padding: 20px;
    }

    .artisti {
        max-width: 90%;
    }
}