/*
Theme Name: Field and Story Farm
Theme URI: https://fieldandstoryfarm.com
Author: Mouz Design
Author URI: https://mouz.design
Description: Custom theme for Field and Story Farm
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: field-and-story-farm
*/

.container {
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 1536px) {
    .container {
        padding: 0;
    }
}


/* Scroll down */
.mouse {
    width: 2rem;
    height: 4rem;
    border: 1px solid #fff;
    border-radius: 1rem;
    position: relative;
}

.mouse::before {
    content: "";
    width: .5rem;
    height: .5rem;
    position: absolute;
    top: .5rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    border-radius: 50%;
    opacity: 1;
    animation: wheel 2s infinite;
    -webkit-animation: wheel 2s infinite;
}

@keyframes wheel {
    to {
        opacity: 0;
        top: 3rem;
    }
}

@-webkit-keyframes wheel {
    to {
        opacity: 0;
        top: 3rem;
    }
}