@font-face {
    font-family: 'Camrygg';
    src: url(./fonts/Camrygg-Regular.ttf);
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Camrygg';
    src: url(./fonts/Camrygg-Bold.ttf);
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'Camrygg';
    src: url(./fonts/Camrygg-Italic.ttf);
    font-weight: 400;
    font-style: italic;
}
@font-face {
    font-family: 'Camrygg';
    src: url(./fonts/Camrygg-BoldItalic.ttf);
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: 'Suite Code';
    src: url(./fonts/SuiteCode-Regular.ttf);
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Suite Code';
    src: url(./fonts/SuiteCode-Bold.ttf);
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'Suite Code';
    src: url(./fonts/SuiteCode-Italic.ttf);
    font-weight: 400;
    font-style: italic;
}
@font-face {
    font-family: 'Suite Code';
    src: url(./fonts/SuiteCode-BoldItalic.ttf);
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: 'Suite Sans';
    src: url(./fonts/SuiteSans-Regular.ttf);
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Suite Sans';
    src: url(./fonts/SuiteSans-Bold.ttf);
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'Suite Sans';
    src: url(./fonts/SuiteSans-Italic.ttf);
    font-weight: 400;
    font-style: italic;
}
@font-face {
    font-family: 'Suite Sans';
    src: url(./fonts/SuiteSans-BoldItalic.ttf);
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: 'Suite Text';
    src: url(./fonts/SuiteText-Regular.ttf);
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Suite Text';
    src: url(./fonts/SuiteText-Bold.ttf);
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'Suite Text';
    src: url(./fonts/SuiteText-Italic.ttf);
    font-weight: 400;
    font-style: italic;
}
@font-face {
    font-family: 'Suite Text';
    src: url(./fonts/SuiteText-BoldItalic.ttf);
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: 'Suite Times';
    src: url(./fonts/SuiteTimes-Regular.ttf);
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Suite Times';
    src: url(./fonts/SuiteTimes-Bold.ttf);
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'Suite Times';
    src: url(./fonts/SuiteTimes-Italic.ttf);
    font-weight: 400;
    font-style: italic;
}
@font-face {
    font-family: 'Suite Times';
    src: url(./fonts/SuiteTimes-BoldItalic.ttf);
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: 'Virginia';
    src: url(./fonts/Virginia-Regular.ttf);
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Virginia';
    src: url(./fonts/Virginia-Bold.ttf);
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'Virginia';
    src: url(./fonts/Virginia-Italic.ttf);
    font-weight: 400;
    font-style: italic;
}
@font-face {
    font-family: 'Virginia';
    src: url(./fonts/Virginia-BoldItalic.ttf);
    font-weight: 700;
    font-style: italic;
}

body {
    font-family: 'Suite Sans', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

header {
    background-color: #3f48cc;
    padding: 10px;
    color: white;
    text-align: center;
    font-size: 24px;
}

.editor-container {
    width: 96%;
    margin: 0 auto; /* Centers the container horizontally */
}

#editor {
    height: 600px;
    margin: 20px auto;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.button-container {
    margin: 20px auto;
    text-align: center;
}

.btn {
    font-family: 'Suite Sans', Arial, sans-serif;
    padding: 10px 20px;
    margin: 5px;
    background-color: #3f48cc;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.btn:hover {
    background-color: #7092be;
}
