/*****************************************/
/*  Women In Ties                        */
/*  winties.org             			       */
/*                                       */
/*  CSS		      					    			     */
/*  Release: v1.0.0           			     */
/*  Date: Jun 09, 2024           			   */
/*                                       */
/*****************************************/

body { 
    padding: 0; 
    color: #ff0090;
    display: flex; 
    flex-wrap: wrap;
    justify-content: center;
    font-family: 'Roboto', Arial, sans-serif;
    padding-top: 56px;
}
header {
		width: 90%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    margin: 0 auto;
    background-color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Gochi Hand', Arial, sans-serif;
}
.logo img {
    height: 48px;
    margin-top: 5px;
    margin-right: 5px;
    width: auto;
}
.head_title {
		width: 100%;
		font-size: clamp(2.0rem, 3.8vw, 3.8rem);
		align-items: center;
    text-align: left;
    display: flex;
    font-family: 'Gochi Hand', cursive;
}
.head_title img{
	  width: 48px;
    height: auto;
    cursor: pointer;
}
.main_container {
		margin: 0 auto;
		width: 90%;
}
.social-icons {
    display: flex;
    margin-right: 8px;
}
.social-icons a img {
    width: 32px;
    height: auto;
}
.logo-font-size {
		font-size: clamp(2.0rem, 2.8vw, 3.8rem);
		font-family: 'Gochi Hand', cursive;
    text-align: center;
}
.big-font-size {
		font-size: clamp(1.2rem, 1.6vw, 2.4rem);
}
.medium-font-size {
		font-size: clamp(1.0rem, 1.2vw, 1.8rem);
		text-align: justify;
}
.small-font-size {
		font-size: clamp(0.7rem, 0.8vw, 1.2rem);
}
.responsive-font {
    font-size: clamp(12px, 1.2vw, 15px);
}
.responsive-logo {
    width: 90%;
    max-width: 580px;
    height: auto;
    display: block;
    margin: 0 auto;
}
.responsive-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    padding-top: 20px;
}
.icon_img {
    justify-content: center;
    align-items: center;
}
.icon_img img {
		display: block; 
    height: 128px;
    width: 128px;
}
.footer_container {
		width: 100%;
}
.footer_links {
    list-style-type: none;
    margin-top: 24px;
    padding: 0;
    text-align: center;
}
.footer_links li {
    display: inline-block;
    margin-right: 8px;
    vertical-align: middle;
}
.footer_icon {
    vertical-align: middle;
    margin-right: 0px;
    display: inline-flex;
}
.footer_icon svg {
    fill: #ff0090;
    width: 16px;
    height: 16px;
}
.footer_text {
    vertical-align: middle;
    font-size: clamp(0.875rem, 1.2vw, 1.5rem);
}
.footer_copyright {
    text-align: center;
    vertical-align: middle;
}
.copyright_text {
    font-size: clamp(0.75rem, 1vw, 0.875rem);
    margin-right: 4px;
}
.footer_icon svg + .copyright_text {
    margin-left: 0.5em;
}
@media (max-device-width: 768px) {
    body {
        max-width: 360px;
        margin: 0 auto; 
    }
}
@media screen and (max-width: 640px) {
    .hide-on-narrow {
        display: none !important;
    }
}
@media screen and (max-width: 800px) {
    .hide-on-mid-narrow {
        display: none !important;
    }
}
a {
	color: #7790ff;
  text-decoration: none;
}

a:hover {
	color: #ff0090;
  text-decoration: none;
}
