@import url('https://fonts.googleapis.com/css2?family=Itim&family=Playwrite+GB+S:ital,wght@0,100..400;1,100..400&display=swap');

*{
    padding: 0;
    margin: 0;
    font-family: "Itim", cursive;
    font-weight: 200;
    font-style: normal;
}
.playwrite-gb-s{
  font-family: "Playwrite GB S", cursive;
  font-weight: 400;
  font-style: normal;
}
.itim-regular {
  font-family: "Itim", cursive;
  font-weight: 400;
  font-style: normal;
}
nav{
    text-align: center;
}
html{
    background: linear-gradient(to left, hsla(212, 98%, 53%, 0.5), hsla(0, 0%, 100%, 0.5) 70%);
}
main{
    padding: 0.75rem;
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    background-image: linear-gradient(to right, hsla(0, 0%, 100%, 1) 5%, hsla(212, 98%, 53%, 1) 20%, hsla(0, 0%, 100%, 0.5) 65%), url("../../assets/img/dev11.png");
    background-repeat: no-repeat;
    background-position-x: right;
    background-position-y: bottom;
}
main > section{
    display: grid;
    gap: 0.5rem;
    grid-template-columns: repeat(6, 11rem);
    justify-content: center;    
}
section#ms-windows .card_esus{
    background: linear-gradient(to left, #FFF 50%, #0d60dd);
}
section#ms-windows #novo{
    background: linear-gradient(to left,#FFF 40%, #e50707);
}

.hide{
    display: none !important;
}
header{
    margin: 1rem;
}
footer{
    margin: 1rem;
}
hr{
    height: 0.65rem;
    background: linear-gradient(to left, hsla(0, 0%, 100%, 0.5), hsla(212, 87%, 46%, 0.5) 5%, hsla(0, 0%, 100%, 0.5) 60%);
    border: none;
}
.card_esus{
    display: inline-block;
    text-align: center;
    width: 10rem;
    height: 1.5rem;
    background: linear-gradient(to left, #FFF 50%, #0e35e6);
    padding: 0.5em 0.5rem 0.4rem;
}

#novo{
    background: linear-gradient(to left, #FFF 40%, #e50707);
    border-radius: 15px;
    font-weight: 900;
    letter-spacing: 0.2rem;
    text-shadow: 0 0 2px #000000;
}

#link-ultima{
    display: inline-block;
    padding-top: 0.5rem;
    width: 10rem;
    height: 1.5rem;
    text-align: center;
    background: linear-gradient(#e50707 25%, #fff 25%, #e50707 25%, #fff);
}

a{
    text-decoration: none;
    width: 100%;
    height: 100%;
    color: #0a0b0c;
    font-weight: 400;
}

li, li > h1{
    display:inline;
}

ol > li{
    list-style-type: none;
}

div.links-uteis{
    display: grid;
    gap: 0.5rem;
    grid-template-columns: repeat(3, 20rem);
    justify-content: center;
}

.card-tutoriais{
    display:block;
    width:100%;
}

#so_select, .card{
    text-align: center;
    background: linear-gradient(to right, #7a92d6 50%, #2643c4);
    height: 1.5rem;
    padding: 0.5rem 0.5rem 0.4rem;
}

#so_select{
    display: inline-block;
    width: 10rem;
    height: 1.5rem;
    background: linear-gradient(to left, #FFF 50%, #0e35e6);
    padding: 0.5em 0.5rem 0.4rem;
    border-radius: 15px;
    font-weight: bolder;
    letter-spacing: 0.5rem ;
}
.btn{
    border-radius: 15px;
    border-style: outset;
    border-color: rgb(0, 0, 0);
}

span.btn{
    display: inline-block;
    width: 6rem;
    text-align: center;
}
span.btn:hover{
    cursor: pointer;
}
.btn:hover{
    border-style: inset;
}

@media screen and (max-width: 1280px) {
    main > section{
        grid-template-columns: repeat(5, 12rem);
    }
    div.links-uteis{
        grid-template-columns: repeat(2, 20rem);
    }
    nav{
        text-align: center;
    }
}

@media screen and (max-width: 900px) {
    main > section{
        grid-template-columns: repeat(3, 12rem);
    }
    div.links-uteis{
        grid-template-columns: repeat(2, 16rem);
        font-size: 80%;
    }
    ol{
        display: grid;
        grid-template-columns: repeat(3, auto);
        justify-content: center;
    }
}

@media screen and (max-width: 580px) {
    main > section{
        grid-template-columns: repeat(2, 12rem);
    }
    div.links-uteis{
        grid-template-columns: 20rem;
    }
    h1.titulo{
        font-size: 1rem;
    }
    nav{
        text-align: center;
    }
    ol{
        justify-content: center;
    }

}

@media screen and (max-width: 300px) {
    main > section{
        grid-template-columns: 12rem;
    }
    div.links-uteis{
        font-size: 70%;
        grid-template-columns: 14rem;
    }
    ol{
        grid-template-columns: auto;
        justify-content: center;
    }
}