@import url('https://fonts.googleapis.com/css2?family=Caprasimo&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
    max-width: 100%;
    text-decoration: none;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #FFE4EA;
}

h1 {
    font-family: 'Caprasimo', sans-serif;
    color: #3F3E50;
    
}
a:visited{
    text-decoration: none;
}
p, a{
    font-family: 'Roboto', sans-serif;
    color: #252530;
}
div#background {
    background-image: url('../img/background.png');
    background-size: cover;
    width: 100vw;
    height: 50vh;
}
header {
    width: 100vw;
    display: flex;
    position: absolute;
    align-items: center;
    flex-direction: column;
}

div#container {
    margin-top: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100vw;
    height: 100px;
    background-color: #FFE4EA;
    position: relative;
}
h1#first {
    color: #3F3E50;
    font-size: 60px;
}
ul {
    display: flex;
    justify-content: space-evenly;
    width: 100vw;
    margin-top: 50px;
}
li {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    border: 2px solid #F596AA;;
    height: 400px;
    width: 20vw;
    border-radius: 10px;
    background-color: #FFE4EA;
    position: relative;
    overflow: hidden;
}
li > img{
    transition: 0.4s ease;
    position: absolute;
}
li > h1{
    z-index: 99;
    font-size: 30px;
    margin-bottom: 10px;
}
li > p{
    width: 55vw;
    z-index: 99;
    margin-bottom: 5cap;
}
div.overlay{
    z-index: 86;
    height: 400px;
    width: 25vw;
    position: absolute;
    background: linear-gradient(0deg, rgba(245,150,160,1) 0%, rgba(0,212,255,0) 100%); 
}
li:hover >img{
    scale: 1.1;
}
a > button.download {
    z-index: 100;
    position: absolute;
    left: 40%;
    bottom: 20px;
    background-color: #F52660;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 10px;
    margin-top: 10px;
    cursor: pointer;
    transition: ease 0.4s;
}
a > button:hover {
    background-color: #3F3E50;
}
button#goback{
    background-color: #F52660;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 10px;
    margin-top: 10px;
    cursor: pointer;
    transition: ease 0.4s;
    position: absolute;
    left: 10px;
    top: 10px;
}