*{
    box-sizing: border-box;
}

html{
scroll-behavior: smooth;
}

body{
    font-family: sans-serif;
    margin: 0;
}

a{
    text-decoration: none;
    color: rgb(255, 255, 255);
}


header{
    display: flex;
    min-height: 70px;
    background-color:blueviolet;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}

.logo{
    display: flex;
    align-items: center;
    font-weight: bold;
}

.logo img{
    height: 50px;
    margin-right: 10px;
}

nav a{
    font-weight: 600;
    padding-right: 10px;
}
nav a:hover{
    color: gold;
}

button{
    font-size: 1.5em;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.5);
    box-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    color:white;
    background-color: blueviolet;
}

button:hover{
    background-color: rgb(101,33,165);
   
}

#Papel01{
    background-color: rgb(84, 84, 84);
    color: white;
    text-align: center;
}
#Papel01 .container{
   padding: 35px 0px;
}

#Papel01 .carta{
    background-position: center center;
    background-size: cover;
    padding: 50px;
    margin: 20px;
    border-radius: 15px;
}

#Papel01 .Trabajos{
    display: flex;
}

.carta:first-child{
    background-image: linear-gradient(
            0deg,
            rgba(0,0,0,0.5),
            rgba(0,0,0,0.5)
        )
        ,url("media/Textil/Buzos.jpg");
}

.carta:nth-child(2){
    background-image: linear-gradient(
            0deg,
            rgba(0,0,0,0.5),
            rgba(0,0,0,0.5)
        )
        ,url("media/Textil/Poleras.png");
}

.carta:nth-child(3){
    background-image: linear-gradient(
            0deg,
            rgba(0,0,0,0.5),
            rgba(0,0,0,0.5)
        )
        ,url("media/Textil/Personalizados.png");
}

.carta:nth-child(4){
    background-image: linear-gradient(
            0deg,
            rgba(0,0,0,0.5),
            rgba(0,0,0,0.5)
        )
        ,url("media/Textil/Gorras.jpg");
}

footer{
    background-color: rgb(230, 230, 230);
}

footer p{
    margin: 0;
    padding: 12px;
    color: rgb(100, 100, 100);
}

footer{
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}