/* Explain: Base reset and typography defaults */
* {
    box-sizing: border-box;
}

html {
    background: var(--background-color);
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    text-align: justify;
}

/* Styling for form focus with theme color */
input:focus, textarea:focus {
    outline-color: var(--accent-color);
}
