html {
    padding: 100px 15%;
    font-family: monospace;
}

a {
    font-size: 14pt;
    text-decoration: none;
}

a:hover {
    font-weight: bold;
}

a:visited {
    color: black;
}

h3 {
    margin-bottom: 50px;
    font-weight: normal;
}

h4 {
    font-size: 20pt;
}

p {
    font-weight: regular;
}

section {
    display: flex;
    flex-flow: row wrap;
    gap: 50px;
}

div {
    width: 300px;
    border: 2px solid orange;
    border-radius: 20px;
    padding-left: 5%;
    padding-right: 5%;
    padding-bottom: 30px;
    
}

@keyframes border {
    from {border-bottom: none; border-right: none; border-top-left-radius: 20px;}
    to {border: 2px solid orange; border-radius: 20px;}
}

@keyframes fill {
    from {background-color: none;}
    to {background-color: rgba(255, 165, 0, 0.5);}
}

div:hover {
    animation-name: fill;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    animation-timing-function: ease-out;
    /* border: 2px solid orange; border-radius: 20px; */
}

img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    object-position: center;
}

