/*
Theme Name: my child
Theme URI: 
Author: 
Author URI: 
Description: 
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 5.7
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Template: twentytwentyfour
Text Domain: my-child
Tags: blog, news, portfolio, one-column, wide-blocks, accessibility-ready, block-patterns, block-styles, custom-colors, custom-logo, custom-menu, editor-style, featured-images, full-site-editing, rtl-language-support, sticky-post, style-variations, threaded-comments, translation-ready, 
*/

:root {
	--global-border-radius: 4px;
	--global-border-width: 5px;
}

section {
	padding-top: 200px;
	padding-bottom: 200px;
}

.red-section {
	background-color: darkseagreen !important;
}

.border {
	border: var(--global-border-width) solid black;
}

.red-section h2 {
	color: aliceblue;
}

@keyframes myanimation {
  from {
	  margin-left: 0px;
	}
  to {
	  margin-left: 100px;
	}
}

.animate-text {
	  animation-name: myanimation;
  animation-duration: 4s;
}

/* Underline the current page in the header menu */
.wp-block-navigation-link .current-menu-item > a {
    border-bottom: 2px solid black; /* Adjust the thickness and color as needed */
}

