/* root styles */
:root {
    --primary-light: rgb(151, 214, 255);
}

/* Addtional styles */

.page-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem;
}

.badge-image {
    height: 150px;
    margin-right: 15px;
    margin-top: 15px;
}

.big-text {
    font-size: 10rem;
}


/* fonts */

@font-face {
    font-family: 'Font';
    src: url('../webfonts/Poppins-Regular.ttf');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Font';
    src: url('../webfonts/Poppins-Bold.ttf');
    font-weight: 700;
    font-style: normal;
}

/* global styles */

* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
}

html {
    font-size: 16px;
}

body {
    font-family: 'Font', sans-serif;
    line-height: var(--bs-body-line-height);
    color: var(--bs-white);
    background-color: var(--bs-dark);
}

/* custom classes */

.smaller {
    font-size: 0.75rem !important;
}

.mini {
    font-size: 0.65rem !important;
}

.micro {
    font-size: 0.5rem !important;
}

.reset-input {
    border: none;
    outline: none;
    background-color: transparent;
    padding: 0;
}

.reset-input::placeholder {
    color: inherit;
    opacity: 0.5;
}

.bg-white-mask {
    background: linear-gradient(white 50%, rgba(255, 255, 255, 0));
}

/* media classes */

@media (max-width: 1200px) {
    /* large screens */
}

@media (max-width: 992px) {
    /* medium screens */
    .badge-image {
        height: 100px;
    }
    .big-text {
        font-size: 5rem;
    }
    .snap-y {
        height: auto;
        overflow-y: visible;
    }
}

@media (max-width: 768px) {
    /* small screens */
    .badge-image {
        height: 80px;
    }
    .big-text {
        font-size: 4rem;
    }
}

@media (max-width: 576px) {
    /* extra small screens */
}
