/* 

Theme name: Rosemount temp
Text Domain: Rosemount temp
Version: 1.0
Description: Custom wordpress theme
Tags: clean, modern, custom
Author: idearium 
Author URI: https://idearium.ca

*/

button {
    background-color: transparent;
    border: none;
    margin: 0;
    padding: 0;
    text-align: inherit;
    font: inherit;
    border-radius: 0;
    appearance: none;
    cursor: pointer;
}

@font-face {
    font-family: "Inter";
    src: url('/wp-content/themes/rosemounttemp/assets/inter-variable.ttf');
    font-display: swap;
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

:root {
    --green: #336151;
}

html {
    margin-top: 0!important;
    font-size: 16px;
    /* root em */
}

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    line-height: 1.3;
    background-color: var(--green);
    color: white;
}

/* temp styles */
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100dvh;
}
.content {
    display: flex;
    flex-direction: column;
    gap: 64px;
    text-align: center;
    align-items: center;
    margin: 120px 0;
}
h1, h2 {
    font-size: 24px;
    margin: 0;
    font-weight: 300;
}
.flex-col {
    display: flex;
    flex-direction: column;
}
.flex-row {
    display: flex;
    gap: 24px;
}
.col-width {
    min-width: 300px;
}
.gap {
    gap: 6px;
}
.gap-2x {
    gap: 12px;
}
a {
    color: white;
    text-decoration: none;
}
.btn-secondary {
    display: flex;
    padding: 12px 24px;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    border: 1px solid #FFF;
    width: fit-content;
    color: white;
    text-decoration: none;
}
.btn-secondary:hover {
    color: var(--green);
    background-color: white;
}

/* mobile */
@media screen and (max-width: 948px) {
    .flex-row {
        flex-direction: column;
        gap: 32px;
    }    
}