/*
Theme Name: Custom Input Download Theme
Theme URI: https://example.com/custom-input-download-theme
Author: Example Author
Author URI: https://example.com
Description: A minimal WordPress theme that focuses on presenting download buttons with an optional input field.  Administrators can create unlimited download sections and buttons from the post editor.  The default header, footer and meta information are hidden to allow the download content to take centre stage.
Version: 1.0
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cid
Tags: custom, download, input
*/
/* Default Reset CSS */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: sans-serif;
  line-height: 1.5;
  background: #fff;
  color: #000;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
  border: none;
  outline: none;
  background: none;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

button {
  cursor: pointer;
}

textarea {
  resize: none;
}