:root {
    --font-primary: "Cerebri Sans", sans-serif;
    --color-black: rgb(0, 0, 0);
    --color-blue: #201f49;
    --font-large: 1.5rem;
    --font-medium: 1rem;
    --font-small: 0.875rem;
}

@font-face {
  font-family: 'Cerebri Sans';
  src: url('/fonts/Cerebri-Sans/CerebriSans-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

body {
    margin: 0;
    font-family: var(--font-primary);
    overflow-x: hidden; /* Prevent horizontal scrolling */
    line-height: 1.6;
    background-color: #ffffff;
    color: rgb(0, 0, 0);
}


/* ############################################################# */
/* BODY */

.form-container {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    max-width: 700px;
    margin: 50px auto;
}
.upload-box {
    border: 2px dashed blue;
    padding: 30px;
    text-align: center;
    cursor: pointer;
}
.upload-box:hover {
    background-color: #A7C7E7;
}