/* This comment will be removed by cssnano */
@import "./fonts.css";
body {
    background-color: white;
    color: #777;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 2rem 0 4rem 0;
}
a {
    position: relative;
    color: #be2edd;
    cursor: pointer;
    text-decoration: none;
}
a::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: #be2edd;
    transform-origin: center;
    transform: translate(-50%, 0) scaleX(0);
    transition: transform 0.3s ease-in-out;
}
a:hover::before {
    transform: translate(-50%, 0) scaleX(1);
}
footer {
    bottom: 0;
    position: fixed;
    text-align: center;
    width: 100%;
    & > p {
        line-height: 0.5rem;
    }
}
header {
    margin: 1rem;
    & > p {
        margin: 0;
    }
    & p:first-child {
        font-weight: bold;
    }
}
section {
    font-family: 'Sans Forgetica', sans-serif;
    font-size: 2rem;
    text-align: center;
    width: 100%;
    & img {
        width: 500px;
    }
}
.heart {
    color: red;
}