@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700;800;900&display=swap');

@import "bootstrap/scss/bootstrap";

body {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #333;
    background-color: gainsboro;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.btn-primary {
    color: #fff;
    border: 1px solid transparent;
    border-radius: 0px;
    background-color: #eb1b24;
}

input{
    border-radius: 0px !important;
}

.btn-primary:hover {
    transition: all 0.3s ease-in-out;
    background: #fff;
    border: 1px solid #eb1b24;
    color: black;
}