/*!
Theme Name: sodo_theme-child
Version: 1.0.0
Template: sodo_theme
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/
:root {
--theme-color: #86795E;
--color-secondary: rgb(1 103 125);
--color-tertiary: rgb(103 96 19);
--link-color : #d3671f;
--bg-blue: #9CAEB5;
--color-surface-container: rgb(234 239 241);

}
p {
	margin-bottom: 0;
}

/* Elements
--------------------------------------------- */
body {
	box-sizing: border-box;
}

ul {
	list-style: none;
}

ol {
	list-style: decimal;
}

img {
	height: auto;
	max-width: 100%;
}

/* Links
--------------------------------------------- */
a {
	color: var(--link-color);
	 transition: all 0.6s ease-out;
}

a:visited {
	color: var(--link-color);
}

a:hover,
a:focus,
a:active {
	color: #191970;
	opacity: 0.6;
}

/* Forms
--------------------------------------------- */

/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/

/* Navigation
--------------------------------------------- */

/* Posts and pages
--------------------------------------------- */

/* Comments
--------------------------------------------- */

/* Widgets
--------------------------------------------- */


/* Media
--------------------------------------------- */


/* Captions
--------------------------------------------- */

/* Galleries
--------------------------------------------- */

/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/

/* Jetpack infinite scroll
--------------------------------------------- */

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/


/* Alignments
--------------------------------------------- */
.flex {
	display: flex;
	justify-content: center;
	align-items: center;
}

.margin-auto { margin: auto }

