@font-face {
    font-weight: 300;
    font-family: 'Fira Sans';
    font-style: normal;
    font-display: swap;
    src: url('../fonts/FiraSans-Light.woff2') format('woff2');
}

@font-face {
    font-weight: 400;
    font-family: 'Fira Sans';
    font-style: normal;
    font-display: swap;
    src: url('../fonts/FiraSans-Regular.woff2') format('woff2');
}

@font-face {
    font-weight: 500;
    font-family: 'Fira Sans';
    font-style: normal;
    font-display: swap;
    src: url('../fonts/FiraSans-Medium.woff2') format('woff2');
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Fira Sans', sans-serif;
    background-color: #fff;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 12px 40px 20px;
}

@media (max-width: 690px) {
    .container {
        padding: 10px 20px 40px;
    }
}

.textarea {
    width: 100%;
    height: 20000px;
    min-height: 100px;
    padding: 12px;
    border: 1px solid transparent;
    border-radius: 6px;
    background-color: #f4f6ff;
    font-size: 16px;
    font-family: 'Fira Sans', sans-serif;
    outline: none;
    resize: vertical;
}

.textarea:focus {
    border: 1px solid #0043fa;
}
