*{
    box-sizing: border-box;
}

body {
    background-image: url("/comics-sw/assets/images/background.webp");

}

.header{
    position: sticky;

    z-index: 1;
    top: 0;
    width: 100%;
    height: 70px;
    background-color: #0e0157;

    border-radius: 5px;
    box-shadow: 2px 0 5px black;


}

.nav-bar{
    display: flex;
    justify-content: space-between;

}


.nav-bar-logo{
display: inline-block;
width: -moz-max-content;
width: max-content;
height: 40px;
color: white;
background-color: #333;
padding: 10px;
text-align: center;
text-decoration: none;
margin-left: 25px;
margin-top: 10px;
border: 2px solid white;
border-radius: 5px;
box-shadow: 5px 5px 5px black;


}


.nav-bar-ul{
    display: flex;
    width: -moz-max-content;
    width: max-content;
    height: 50px;
    margin-top: 0;
    margin-right: 25px;
    list-style: none;

}


.nav-bar-button{
    display: inline-block;
    text-align: center;
    margin-left: 15px;

text-decoration: none;
background-color: #333;
color: white;
padding: 10px 5px;
width: -moz-max-content;
width: max-content;
height: 40px;

margin-top: 10px;
border-radius: 5px;
border: 2px solid white;

box-shadow: 5px 5px 5px black;

}

.nav-bar-button2{

background-color: #333;
color: white;
display: inline-block;
    text-align: center;
    margin-left: 15px;

text-decoration: none;

padding: 5px;
width: 40px;
height: 40px;
border-radius: 5px;

margin-top: 10px;
border: 2px solid white;

box-shadow: 5px 5px 5px black;
}


.icons{
display: inline-block;
width: 30px;
height: 30px;
margin-top: 5px;
}

.banner {
    width: 100%;

}

.titles {
    border-radius: 5px;
    color: white;
    background-color: #333;
    padding-left: 5px;

}


.main,
.footer {
    position: relative;
    top: 50px;
    z-index: 0;
    margin-left:auto;
    margin-right: auto;
    background-color: #c0c0c0;
    width: 75%;
    border: 2px solid #000;
    border-radius: 10px;
    margin-bottom: 10px;
    padding-bottom: 10px;

}

.text{
    padding-left: 5px;
}

.button{
    background-color: grey;
    color: blue;
    margin-bottom: 2px;
    margin-left: 5px;
    padding-left: 5px;
    padding-right: 5px;
    text-decoration: none;
    border: 1px solid black;
    display: inline-block;
}

.iframe {
    margin: 5px;
    width: 99%;
    height: 300px;
    border: 2px solid black;

}

.series-regulares {
    border: 2px solid black;
    margin: 5px;
    /* width: 800px;
    margin-left: auto;
    margin-right: auto; */
    margin-bottom: 15px;
}




@media (max-width: 600px) {
    .nav-bar-logo{
        font-size: 60%;
        padding: 5px;
        margin-left: 8px;
        padding: 8px 1px 5px 1px;
    }

    .nav-bar-ul{
        margin-right: 0px;
        padding-left: 0px;

    }

    .nav-bar-button {
        font-size: 80%;
        margin-top: 15px;
        margin-left: 10px;
        padding: 5px 1px 10px 1px;
        height: 30px;

    }

    .nav-bar-button2 {
        margin-left: 10px;
    }

 .main,
 .footer {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
 }   
}