@tailwind base;
@tailwind components;
@tailwind utilities;

[x-cloak] {
    display: none;
}

@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");

:root {
    --primary-color: #e04a0f;
    --soft-white: #f2f3f4;
    --background: #ffffff;
    --coal-black: #333333;
}

* {
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: "Roboto", sans-serif;
}

body {
    color: var(--coal-black);
    background: var(--background);
}

a.logo img {
    width: 230px;
}

svg {
    flex: none;
}

a {
    display: inline-flex;
}
@media (min-width:567.98px) and (max-width:992px) {
    a.logo img {
        width: 210px;
    }
}
@media (max-width:567px) {
    a.logo img {
        width: 160px;
    }
}