@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100..700;1,100..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Intel+One+Mono:ital,wght@0,300..700;1,300..700&display=swap');
*{
    margin: 0;
    padding: 0;
    transition: .5s all;
}
html{
    overflow: hidden;
}
body{
    background-color: black;
}
header{
    background-color: rgb(10, 10, 10);
    width: 100%;
    height: 10vh;
    padding: 1%;
    border-bottom: 1px solid gray;
    color: white;
}
#logo{
    min-width: 80px;
    max-width: 100px;
    position: absolute;
    left: 30px;
}
header > h1{
    margin-top: 20px;
    font-size: 28px;
    font-family:  "Intel One Mono";
    font-weight: 500;
    position: absolute;
    left: 50%;
    transform: translate(-50%);
}
main{
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
    height: 450px;
    font-family: "IBM Plex Sans";
    font-weight: 400;
}
main::before{
    position: absolute;
    inset: 0;
    content: '';
    z-index: -1;
    filter: brightness(0.15);
    background-image: url('../images/Fundo4.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-position-y: 0px;
    background-size: cover;
}
main > h2{
    text-align: center;
    margin: auto;
    margin-top: 15%;
    margin-bottom: 10px;
    font-size: 35px;
    max-width: 700px;
    font-family: "IBM Plex Sans";
    font-weight: 600;
}
main > button#assinar{
    margin-top: 5%;
    color: rgb(98, 98, 255);
    background-color: transparent;
    outline: none;
    margin-right: 5px;
    padding: 1.5%;
    width: 10%;
    border-radius: 10px;
    border: 1px solid rgb(98, 98, 255);
}
main > button#testar{
    color: white;
    background-color: rgb(98, 98, 255);
    outline: none;
    margin-right: 5px;
    padding: 1.5%;
    width: 15%;
    border-radius: 10px;
    border: none;
}
main > button#assinar:hover{
    box-shadow: 1px 1px 10px rgba(98, 98, 255, 0.753);
    background-color: rgb(130, 130, 255);
    color: white;
}
main > button#testar:hover{
    box-shadow: 1px 1px 10px rgba(98, 98, 255, 0.753);
    background-color: rgb(130, 130, 255);
}
@media screen and (min-width: 1000px){
    main{
        height: 550px;
    }
    main button#assinar{
        width: 8%;
        padding: 1.25%;
        margin-top: 2.5%;
        margin-right: 10px;
    }
    main button#testar{
        width: 12.5%;
        padding: 1.25%;
    }
}

@media screen and (max-width: 870px){
    header > h1{
        font-size: 26px;
    }
}

@media screen and (max-width: 800px){
    header > h1{
        transform: translate(-25%);
        font-size: 24px;
    }
    main button#assinar{
        margin-top: 5%;
        padding: 2%;
        width: 12.5%;
    }
    main button#testar{
        padding: 2%;
        width: 20%;
    }
}

@media screen and (max-width: 716px) {
  header > h1 {
    font-size: 22px;
  }
}
@media screen and (max-width: 630px){
    header > h1{
        font-size: 20px;
    }
    main::before{
        background-image: url('../images/Fundo2.png');
        background-size: cover;
    }
    main{
        height: 450px;
    }
    main button#assinar{
        width: 15%;
        padding: 2.5%;
    }
    main button#testar{
        padding: 2.5%;
        width: 25%;
    }
}
@media screen and (max-width: 580px){
    header > h1{
        font-size: 18px;
        transform: translate(-15%);
    }
    main button#assinar{
        width: 20%;
        padding: 2.5%;
    }
    main button#testar{
        width: 30%;
        padding: 2.5%;
    }
}
@media screen and (max-width: 480px){
    header > h1{
        margin-top: 20px;
        transform: translate(-10%);
    }
    #logo{
        left: 10px;
    }
    main > button#assinar{
        margin-top: 10%;
        width: 25%;
        padding: 3.5%;
    }
    main > button#testar{
        width: 35%;
        padding: 3.5%;
    }
}
@media screen and (max-width: 440px){
    header > h1{
        transform: translate(-10%);
    }
    
}
