.pacifico-regular {
  font-family: "Pacifico", cursive;
  src: url("https://fonts.googleapis.com/css2?family=Pacifico&display=swap");
  src: local("Pacifico-Regular");
  font-weight: 400;
  font-style: normal;
}


body{
	max-width: 100%;
	min-width: 300px;
	height: auto;
    font-size: 18px;
    color: #0E0D0D;
    background-image: url("images/back.jpg");
    background-repeat: repeat;
}
        
span{
    font-style: italic;
    font-weight: bold;
}

.header{
	padding-top:20px;
	padding-bottom:20px;
}

.container{
	margin: 0 20px;
	padding: 5px 0;
    max-width: 99%;
	min-width: 300px;
    background: transparent;
    align-items:stretch;
    font-size: 12px;
}

.main_container{
    font-size: 20px;
}

.header_menu{
	display: flex;
	align-self: flex-start;
    align-items: stretch;
}

#header_image{
	margin: 0px 10px;
	max-width:90%;
	height: auto;
}

.header_btn{
    justify-content: space-between;
    align-items: center;
	font-weight: bold;
    width: 140px;
    height: 20px;
    margin: 0 10px;
    padding: 0 10px;
    background: #00d6be;
    border-color: transparent;
    color: white;
    border-radius: 40px;
    text-decoration: none;
    overflow:hidden;
}

.menu__list{
	margin: 0px auto;
	padding: 10px 5px;
    display: flex;
    background: transparent;
    align-items: center;
    list-style-type: none;
}

.menu__item{
    text-transform: uppercase;
}

.link_menu{
	padding: 10px 0px;
	display:flex;
    align-items: center;
    align-self: stretch;
    background: transparent;
}

.sale_list{
	margin: 5px auto;
	list-style-type: none;
}

.gray_block {
	margin: 3% 3%;
	padding: 10px 10px;
	background-color: #fcfcfc;
	border-style: solid;
	border-width: 0.7px;
	border-color: #00d6be;
	border-radius: 10px;
	text-align: justify;
	box-shadow: 5px 5px 5px #777777;
    align-content: space-between;
}

/*.intro_block{
    display: flex;
    justify-content: flex-start;
}*/

.mint_block {
	margin: 3% 3%;
	padding: 10px 10px;
	background-color: #defaf7;
    border-style: solid;
	border-width: 0.7px;
	border-color: #00d6be;
	border-radius: 10px;
	text-align: justify;
	box-shadow: 5px 5px 5px #777777;
    align-content: space-between;
}

p{
	margin: 5px 5px;
}

.s_block:first-letter {
	font-size: 250%;
	font-style: italic;
	color: #1c8767;
}

.intro_text_block{
    margin: 20px 10px;
    padding: 5px 5px;
    border-style: solid;
    border-width: 0.5px;
    border-color:#0E0D0D;
}

.portrait{
    max-width: 30%;
    min-width:25%;
    max-height: 30%;
    min-height:25%;
    display:flex;
    margin:5px auto;
}

.sale_banner{
	width: 150px;
	min-width: 25%;
	display:block;
	margin: 15px auto;
}

.register_banner{
	width: 150px;
	min-width: 25%;
	display:block;
	margin: 15px auto;
}

.catalogue_banner{
	width: 75%;
	min-width: 25%;
	display:flex;
	align-self:justify;
    text-align: center;
	margin: 15px auto;
}

.assort_banner{
	width: 75%;
	min-width: 25%;
	display:block;
	margin: 15px auto;
}


.lesson_banner{
	width: 150px;
	min-width: 25%;
	display:flex;
	float:right;
	align-self:justify;
	margin: 15px 5px;
}

.assort_block{
    text-align: center;
    font-size: 24px;
    font-style: italic;
    margin: 40px auto;
}

.mint_button{
    font-family: "Pacifico";
    font-size: 28px;
    width: 200px;
    height: 60px;
    background-color: #defaf7;
    border-color: #1c8767;
    color: #1c8767;
    border: 4px solid;
    cursor:pointer;
    position:relative;
	margin: 15px 15px;

    &::before {
        content: "";
        width: 20px;
        height: 4px;
        position: absolute;
        left:0;
        top: -4px;
        display: block;
        background:#defaf7;
        transition: 200ms ease-in-out;
    }

    &::after {
        content: "";
        width: 20px;
        height: 4px;
        position: absolute;
        right:0;
        bottom: -4px;
        display: block;
        background:#defaf7;
        transition: 200ms ease-in-out;
    }

    &:hover {
        color:#00d6be;
        &::before{
            left: calc(100% - 20px);
        }

        &::after{
            right: calc(100% - 20px);
        }
    }

    &:active{
        background: #d4d4d4;
        color:#fcfcfc;
    }
