@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {

    --white: #FFFFFF;
    --primary: #FF800F;
    --secondary: #001064;

    --font-family: 'Montserrat', sans-serif;

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-family);
}

body {
    overflow-x: hidden;
}

.container {

    width: 100%;
    height: 100%;
    margin: auto;
    display: grid;
    grid-template-rows: 90px auto auto;
    grid-template-areas: "header header"
                         "main main"
                         "footer footer";

}

.container .btn-float {
    position: fixed;
    display: grid;
    width: 60px;
    height: 60px;
    right: 40px;
    bottom: 60px;
    z-index: 1;
    border-radius: 100px;
    background-color: var(--primary);
}

input, select, textarea {
    outline: none;
    font-family: var(--font-family);
}

button {
    border: none;
    display: grid;
    cursor: pointer;
    background: none;
    place-items: center;
}

ul, li {
    list-style: none;
}

img {
    width: inherit;
    height: inherit;
    border-radius: inherit;
}

a {
    color: var(--primary);
    text-decoration: none;
}