@font-face {
    font-family: otsikko;
    src: url(Molle/Molle-Italic.ttf);
}

@font-face {
    font-family: leipa;
    src: url(SN_Pro/SNPro-VariableFont_wght.ttf);
}
 
body{
    background-color: #ffeef2;
    margin: 0;
}
 
h1{
    text-align: center;
    font-family: otsikko, sans-serif;
    color: #ff839e;
    font-size: 50px;
}
 
.container{
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 50px;
    text-align: center;
}
 
.tuote{
    background-color: #ffffff;
    color: #ff708f;
    text-align: center;
    padding: 10px;
    display: inline-block;
    border-radius: 20px;
    max-width: 200px;
    max-height: 300px;
    box-shadow: 0 5px 10px rgba(255, 137, 137, 0.2);
    margin: 10px;
    font-family: leipa, sans-serif;
    font-size: 15px;
}
 
.tuote:hover{
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(255, 165, 180, 0.2);
}
 
.osta{
    background: #ffb2c5;
    color: rgb(255, 255, 255);
    border: none;
    padding: 10px;
    margin-top: 10px;
    cursor: pointer;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 10px;
    font-size: 15px;
}
 
.osta:hover{
    background-color: #ffa7ba;
}
 
img{
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}
 
header {
    background-color: #ffdde4;
    padding: 1px;
}

a {
    text-decoration: none;
    color: inherit;
}

a:active {
    text-decoration: none;
}