/* **********************************************************
 * add custom styles after imports below
 * ********************************************************** */

@import "../default.css";
@import "layout.css";
@import "queries.css";

/* **********************************************************
 * to import a font, use the @import option, you can find
 * lots of font options at fonts.google.com for example.
 * ********************************************************** */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


html {
    font-family: 'montserrat', sans-serif;
}



/* **********************************************************
 * Customizing
 *
 * changes to default settings like colors, typography,
 * spacing can be made in default.css
 *
 * other custom settings, start below
 *
 * ********************************************************** */


body {
    background-color: var(--color-white);
    color: var(--color-black);
    font-size: 20px;
    font-weight: 400;
}


a {
    color: var(--color-0);
}

a:hover {
    color: var(--color-5);
    text-decoration-color: transparent;
}

.underline {
    text-decoration: underline;
    font-size: 1rem;
}

p>a {
    color: inherit;
    font: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.column p {
    font-size: 1.1rem}


    


@media (orientation: portrait) {
    * {
        font-size: 18px;
    }

}

@media only screen and (max-width: 768px) {
    /* Adjustments for smaller screens */
    /* For example: */
    .landing__content-item {
        padding: 10px;
    }
    .main__title h1 {
        font-size: 24px;
    }
    .main__nav ul li {
        display: block;
        margin: 10px 0;
    }
    .main__nav ul li a {
        padding: 5px;
    }
    /* Add more media queries as needed */
}


/* iPhone 14 */
@media only screen 
  and (device-width: 390px) 
  and (device-height: 844px) 
  and (-webkit-device-pixel-ratio: 3)
  and (orientation: portrait) {
    /* Add your styles here */
}
