@font-face {
    font-family: 'Doctor Glitch';
    font-style: normal;
    font-weight: 400;
    src: local('Doctor Glitch'), url('https://fonts.cdnfonts.com/s/19221/Doctor Glitch.woff') format('woff');
}

*{
    margin: 0;
    padding: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    font-weight: 500;
}
::-webkit-scrollbar {
    display: none;
}
html{
    background-color: rgb(17, 0, 78);
}
.tabbar{
    position: fixed;
    width: 100%;
    height: min-content;
    background-color: white;
    margin: 0 auto;
    line-height: 50px;
    display: inline-block;
    align-items: center;
    box-shadow: 0 0 0.7rem white;
    z-index: 10;
}
.tabbar *{
    float: left;
    color: black;
}
.content{
    width: 100%;
    height: 100%;
    background-color: rgb(140, 55, 209);
}
.mid{
    width: 100%;
    height: 300px;
    background-color: rgb(4, 65, 65);
}
.tabbar img{
    height: 30px;
    margin: 10px 15px 10px 15px;
    width: auto;
    vertical-align: middle;
}
.tabbar a{
    float: right;
    margin-right: 20px;
    text-decoration: none;
    color: rgb(32, 32, 32);
    transition: 0.3s;
}
.tabbar a:hover{
    color: rgba(24, 0, 129, 0.7);
}
.logo{
    margin-right: 5px;
    height: 100%;
    width: min-content;
    font-family: 'Doctor Glitch', sans-serif;
    letter-spacing: 3px;
    font-weight: 300;
}
.tabbar h2{
    font-style: italic;
    font-size: 18px;
}
.info{
    padding-top: 50px;
    width: 100%;
    height: 600px;
    text-align: left;
    font-size: 20px;
    background-image: url(img/pc_background.jpg);
    background-size: cover;
    background-position: 50% 0%;
}
.info .features{
    width: 100%;
    height: min-content;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: rgb(17, 0, 78);
    box-shadow: 10px rgb(255, 255, 255);
}
.info .features .contain{
    width: 300px;
    min-width: 270px;
    margin: 40px;
    padding-top: 20px;
    height: 400px;
    border: 3px solid blueviolet;
    box-shadow: 0 0 0.5rem blueviolet;
    border-radius: 20px;
    float: left;
    transition: 0.3s;
}
.info .features .contain:hover{
    background-color: rgba(138, 43, 226, 0.3);
    box-shadow: 0 0 1rem blueviolet;
    transform: translate(0, -10px);
}
.info .features .contain *{
    margin: 20px;
    cursor: default;
}
.info .features .contain h1{
    color: white;
    height: 50px;
    font-size: 18px;
    font-family: 'Doctor Glitch', sans-serif;
    font-weight: 200;
    text-align: center;
    letter-spacing: 3px;
}
.info .features .contain p{
    color: white;
    text-align: left;
    font-size: 17px;
    padding: 30px;
}
.info #description{
    padding-left: 70px;
    width: 50%;
    height: 600px;
    background: -webkit-linear-gradient(left,black, rgba(0,0,0,0));
    z-index: 1;
}
.info #description div{
    width: 100%;
    height: 100%;
    font-size: 25px;
}
.info #description button{
    margin-top: 40px;
    padding: 15px;
    color: white;
    font-size: 17px;
    background-color: blueviolet;
    border-radius: 100px;
    box-shadow: 0 0 0.3rem blueviolet;
    border: 2px solid blueviolet;
    cursor: pointer;
    width: 200px;
    transition: 1s;
}
.info #description button:hover{
    background-color: rgba(0,0,0,0);
    border-radius: 10px;
    transition: 0.3s;
}
.info #description p{
    padding-top: 130px;
    width: 350px;
    margin-bottom: 30px;
    min-width: 300px;
    color: white;
}
.info #description i{
    font-size: 13px;
    margin-left: 7px;
}
footer{
    width: 100%;
    height: 100px;
    background-color: blueviolet;
    box-shadow: 0 0 0.7rem blueviolet;
}footer p{
    padding: 0 30px 0 30px;
    color: white;
    font-size: 16px;
    line-height: 100px;
}
.parrafo{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.parrafo *{
    padding: 100px;
    margin-top: 20px;
    color: white;
    font-weight: 100;
    background-color: rgb(17, 0, 78);
}
.parrafo h1{
    padding: 0;
    padding-top: 50px;
    margin: 0 20px;
    width: 100%;
    line-height: 200px;
    border: 3px solid blueviolet;
    border-radius: 30px;
    background-color: rgba(138, 43, 226, 0.3);
    box-shadow: 0 0 0.5rem blueviolet;
    font-family: 'Doctor Glitch', sans-serif;
    letter-spacing: 3px;
    text-align: center;
    color: white;
    transition: 0.3s;
}
.parrafo h1:hover{
    transform: translate(0, 10px);
    box-shadow: 0 0 1rem blueviolet;
}
