﻿*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }
    input{
    display: none;
    }
    
    h1{
        text-align: center;
        padding-top: 10px;
        padding-bottom: 10px;
        font-family: 'Monotype Corsiva';
        font-size: 30px;
        font-weight: bold;
        color:red;
    }
    .bg-color{
    background-color: #F7FD93;
    }
    .top-content{
    background-color: rgb(243, 243, 243);
    width: 90%;
    margin: 0 auto 20px auto;
    height: 60px;
    display: flex;
    align-items: center;
    border-radius: 5px;
    box-shadow: 3px 3px 5px lightgray;
    }
    .pic{
    position: relative;
    height: 230px;
    box-shadow: 3px 3px 5px lightgray;
    cursor: pointer;
    transition: .5s;
    
    }
    .pic img{
    width: 100%;
    height: 100%;
    border-radius: 10px;
    transition: .5s;
    }
    .pic::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 22px;
    font-weight: bold;
    width: 100%;
    margin-top: -100px;
    opacity: 0;
    transition: .3s;
    transition-delay: .2s;
    z-index: 1;
    }
    .pic:after{
    content: "";
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    border-radius: 10px;
    height: 0;
    background-color: rgba(0, 0, 0,.4);
    transition: .3s
    }
    .pic:hover:after{
    height:100%;
    
    }
    .pic:hover:before{
    margin-top: 0;
    opacity: 1;
    }
    
    