@import url('https://fonts.googleapis.com/css2?family=Ephesis&family=Poppins:ital,wght@0,300;0,400;0,700;1,600&display=swap');

body{
   font-family: 'Poppins', sans-serif;
   font-size: 1.2rem;
   min-height: 100%;

    
     

}

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

html{
    height: 100%;
}
.grid-container > *{
    box-shadow: -1px 1px 7px 0px  rgba(0,0,0,0.75);
    border-radius: 4px;
    padding: 10px;
    text-align: center;
}
.header{
   grid-area: header;
   background-color: rgb(249, 244, 244);
   
}
    
.header h1{
    font-family: Ephesy,cursive;
}
  
.header > img{
    width: 100%;
    height: 100%;
   
}

.fotob{
    width: 33px;
    height: 25px;
    background-color: green;
    
}
 

.btn-neon{
    position: relative;
    display: inline-flex;
    background-color: white;
    color: rgb(5, 94, 66);
    letter-spacing: 0px;
    text-decoration: none;
    font-size: 23px;
    overflow: hidden;
    transition: 0.2s;
    word-spacing: 10px;
}
.btn-neon:hover{
    background: #a945c7;
    box-shadow: 0 0 10px #a945c7, 0 0 40px #a945c7, 0 0 80px #a945c7;
    transition-delay: 1s;
 }
.btn-neon span{
    position: absolute;
    display: block;
}
#span1{
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent,#a945c7);
 }
 .btn-neon:hover #span1{
    left: 100%;
    transition: 1s;
}
 #span3{
    bottom: 0;
    right: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(270deg, transparent,#a945c7);
}
 .btn-neon:hover #span3{
    right: 100%;
    transition: 1s;
    transition-delay: 0.5s;
}
#span2{
    top: -100%;
    right: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg,transparent,#a945c7);
}
.btn-neon:hover #span2{
    top: 100%;
    transition: 1s;
    transition-delay: 0.25s;
}
#span4{
    bottom: -100%;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(360deg,transparent,#a945c7);
}
.btn-neon:hover #span4{
    bottom: 100%;
    transition: 1s;
    transition-delay: 0.75s;
}



.navbar {
    grid-area: navbar;
    background-color: rgb(255, 255, 255);
    word-spacing: 20px;
    
    

}

.navbar > a {
    width: 100%;
    height: 100%;
    font-size: 100%;
    text-decoration: none;
    color: blueviolet;
    
}

.navbar :hover{

    color: rgb(4, 20, 20);
}


.sidebar {
    grid-area: sidebar;
    background-color: rgb(190, 184, 22);

    
}
.sidebar > p{
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    text-align: left;
}
.sidebar h4{
    font-size: 28px;
}
.sidebar > .lunes{
    text-align: center;
    
}

.sidebar h5{
     font-size: 25px;
}

.main {
    grid-area: main;
    background-color: rgb(144, 11, 144);

}

.main > h2{
    font-size: 43px;
}

.footer {
    grid-area: footer;
    background-color: rgb(231, 135, 8);
}

.footer__copyright{
    color: blueviolet;
    word-spacing: 5px;
}

.footer :hover{
    color: white;
}



.grid-container{
    display: grid;
    gap: 10px;
    grid-template: 
    "header" 250px
    "navbar" 60px 
    "sidebar" auto
    "main"     auto
    "footer"   100px
     ;

}



@media (min-width:600px){
    .grid-container{
    grid-template:
         "header  header" 350px 
         "navbar  navbar"  70px
         "sidebar main"    auto
         "footer  footer"   80px /
          300px    auto
         ;
}

}

@media (min-width:900px){
    .grid-container{
    grid-template:
         "header  header"  300px 
         "navbar  navbar"  55px
         "sidebar main"    auto
         "footer  footer"   80px /
          430px    auto
         ;
    }
}