* {
    padding: 0;
    margin: 0;
}
*,
*::before,
*::after {
    box-sizing: inherit;
}

html{
    box-sizing: border-box;
}
body{
    background: url('image/ignasi_pattern_s.png');
    font-family: "Open Sans", sans-serif;
    font-size: 62.5%;
    letter-spacing: 1.5px;
    margin: 0;
    text-align: center;
}
.container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 0.5em;
}
ul > li {
    list-style: none;
}
.card,
.reset-btn{
    cursor: pointer;
}
.btn {
    border-radius: 1em;
    border: none;
    color: #fff;
    box-shadow: 5px 2px 20px 0 rgba(46, 61, 73, 0.5);
    padding: 0.8em;
}
h1 {
    font-size: 3em;
    font-weight: 400;
}
h2{
    font-size: 2.5em;
    font-weight: 600;
}
p{
    font-size: 1.6em;
}
h3{
    font-weight: 400;
}
.score-panel{
    font-size: 1.4em;
    padding: 1em 0 2em;
}
.star-rating > li {
    display: inline-block;
    pad: 0.5em;
}
.moves-counter{
    padding: 0.5em;
}
.reset-btn{
    background-color: #000;
    margin: 0.5em;
    padding: 0.5em;
}
.timer-container{
    background: #fff;
    border-radius: 0.5em;
    color: #000;
    margin: 0.5em;
    padding: 0.5em;
}
.timer{
    font-size: 1em;
}
.modal{
    display: none;
    position: fixed;
    z-index: 99;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(46, 61, 73);
    background-color: rgba(46, 61, 73, 0.6);

}
.modal-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    margin: 5% auto;
    border: 0.8em solid #fc4;
    padding-right: 2em;
    width: 80%;
}
.close{
    align-self: flex-end;
    color: #28e;
    font-size: 5em;
}
.close:hover,
.close:focus{
    color: #5cf;
    text-decoration: none;
    cursor: pointer;
}
.modal-img{
    display: inline-block;
    margin: 1em 0 1em;
    width: 20em;
}
p.stats{
    font-weight: 600;
}
p.stats:last-child{
    margin-bottom: 1em;
}
.play-again-btn {
    background: #28e;
    margin-bottom: 1em;
}
.deck {
    background: linear-gradient(to bottom, #5cf, #28e);
    border-radius: 1.5em;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    height: 35em;
    margin-bottom: 6em;
    padding: 0.5em;
    width: 35em;
}
.deck,
.card{
    box-shadow: 5px 2px 20px 0 rgba(46, 61, 73, 0.5);
}
.card{
    background: #fc4;
    border-radius: 0.5em;
    height: 7em;
    width: 7em;
}
img{
    user-select: none;
    width: 6em;
}
.deck img{
    visibility: hidden;
}
.deck .card.flip {
    background: #fff;
    cursor: default;
    transform: rotateY(180deg);
    transition: transform 0.3 linear;
    pointer-events: none;
}
.flip img {
    background: #fff;
    visibility: visible;
}
.deck .card.match {
    background: #39d;
    visibility: visible;
    cursor: default;
    animation: pulse 1s;
}
.match img{
    background: #39d;
}
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    80% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

@media screen and (min-width: 550px){
    .deck {
        height: 50em;
        padding: 2em;
        width: 50em;
    }
    .card {
        height: 10em;
        width: 10em;
    }
    .deck img{
        width: 9em;
    }
    .modal-content h2{
        font-size: 4em;
    }
    .play-again-btn {
        font-size: 1.8em;
    }
}
@media screen and (min-width: 800px){
    h1{
        font-size: 6em;
    }
    p{
        font-size: 2.3em;
    }
    .deck{
        height: 70em;
        width: 70em;
    }
    .card{
        height: 15em;
        width: 15em;
    }
    .deck img {
        width: 13em;
    }
    .reset-btn{
        font-size: 0.8em;
    }
    .footer{
        font-size: 1.2em;
    }
    .modal-content h2{
        font-size: 5em;
    }
    .modal-img{
        width: 30em;
    }
    .play-again-btn{
        font-size: 2em;
    }
}

#Asset
{ 
    background: white;
    text-decoration: none; 
    color: #000;
    font-size: 20px;
}

#youtobe{
    background: yellow;
    text-decoration: none; 
    color: #000;
    font-size: 30px;
}