@import url('https://fonts.googleapis.com/css2?family=Arsenal+SC:ital,wght@0,400;0,700;1,400;1,700&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Source+Code+Pro:ital,wght@0,200..900;1,200..900&display=swap');

*{
    margin: 0;
    padding: 0;

    font-family: Source Code Pro;
    color: white;

    
}

body{
    height: 100vh;
    position: relative;
    background-image: linear-gradient(0deg, #010b0e 45.45%, #014319 45.45%, #014319 50%, #010b0e 50%, #010b0e 95.45%, #014319 95.45%, #014319 100%);
    background-size: 44.00px 44.00px;

}

main{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

h1, h2, h3{
    color: #05e455;
}

h1{
    font-size: 50px;
}

.content{
   width: 90%;
}

h2, h3{
    font-size: 30px;
    padding: 10px;
}

.div-tags{
    display: none;
}

p{
    font-size: 25px;
    padding: 10px;
    letter-spacing: -1.5px;
    word-spacing: -2px;
}

span{
    color: #ff8a30;
    font-weight: 600;
}

img{
    height: 30px;
    padding-right: 20px;
    filter: invert();
}

ul{
    padding-bottom: 10px;
}

li{
    display: flex;
    font-size: 25px;
    padding: 10px;
    width: fit-content;
    align-items: center;
}

a{
    display: block;
    text-decoration: none;
}

@media only screen and (min-width: 768px) {

    h1{
        font-size: 60px;
    }    

    h2{
        font-size: 40px;
    }

    h3{
        font-size: 32px;
    }

    .div-tags{
        display: block;
        padding-left: 70px;
    }

    p{
        width: 70%;
        margin-left: 80px;
        padding-block: 0;        
        padding-left: 80px;
        border-style: solid;
        border-color: hsla(0, 0%, 0%, 0);
        border-width: 2px;
        border-left-color: white;
    }

    ul{
        
        margin-left: 80px;
        padding-block: 0;        
        padding-left: 80px;
        border-style: solid;
        border-color: hsla(0, 0%, 0%, 0);
        border-width: 2px;
        border-left-color: white;
    }

    p, li{
        font-size: 30px;
    }

    li:hover{
        cursor: pointer;
    }
}