/**
 * Theme Name:        The Red Ball
 * Description:       Custom theme for The Red Ball
 * Version:           1.0.0
 * Author:            Chandni Patel
 * Author URI:        https://chandnipatel.in/
 * Text Domain:       the-red-ball
 * License:           GNU General Public License v2.0 or later
 * License URI:       https://www.gnu.org/licenses/gpl-2.0.html
 */

@import "static/css/core.css";
@import "static/css/typography.css";
@import "static/css/header.css";
@import "static/css/footer.css";
@import "static/css/404.css";
@import "static/css/login.css";

*, ::after, ::before {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 75px;
    margin: 0;
    padding: 0;
}

body {
    word-break: break-word;
}

:focus-visible,
:focus,
a:focus {
    outline: unset;
    box-shadow: unset;
}

section:last-child {
    margin-bottom: 0;
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hide-on-desktop {
    display: none;
}

.hide-on-mobile {
    display: block;
}

.main {
    padding-top: 75px;
}


@media screen and (max-width: 951px) {

    .hide-on-desktop {
        display: block;
    }

    .hide-on-mobile {
        display: none;
    }

    .main {
        padding-top: 70px;
    }
}