@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700;800;900&display=swap");
*{
    /* margin: 0;
    padding: 0; */
    box-sizing: border-box;
}
body {
    background-color: white;
    width: 100vw;
    overflow-x: hidden;
}
.rss{
    height: 100vh;
    width: 100vw;
    background-color: aqua;
}

.resource{
    height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
}

.resource h2{
    font-family: 'Rubik', sans-serif;
    text-align: center;
    width: 100vw;
    font-size: clamp(1rem, 10vw, 7rem);
    font-weight: 900;
    color: #f2f2f2;
    position: absolute;
    top: calc(font-size);
    left: 0;
    line-height: 1.2em;
    z-index: 0;
}
.resourcetext {
    font-family: 'Rubik', sans-serif;
    text-align: center;
    font-size: clamp(1rem, 3.5vw, 1.5rem);
    font-weight: 500;
    z-index: 1;
    line-height: 1.7em;
    max-width: 75%;
    margin-top: 6.5rem;
    margin-bottom: 4rem;
}
.resourcetext span{
    font-size: 23px;
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
}
.readme{
    font-family: 'Rubik', sans-serif;
    background-color: transparent;
    font-size: 14px;
    border: 2px solid black;
    border-radius: 50px;
    height: 45px;
    width: 155px;
    cursor: pointer;
    font-weight: 500;
    transition: 0.25s ease;
}
.readme img{
    height: 10px;
}
.readme:hover{
    background-color: black;
    color: white;
}
.readme:hover img{
    filter: invert(98%) sepia(99%) saturate(3%) hue-rotate(252deg) brightness(107%) contrast(100%);
}