@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&family=Stack+Sans+Headline:wght@200..700&display=swap');

*, *::before, *::after {
    box-sizing: border-box;
}

body{
    background-color: black;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 98vh;
    padding-left: 10vw;
    padding-right: 10vw;
    user-select: none;
}

h1{
    color: white;
    font-family: "Stack Sans Headline", sans-serif;
    font-size: 4rem;
    margin-bottom: 0;
}

.line {
    display: block;
    width: 20vw;
    height: 2px;
    margin: 20px auto 0;
    padding: 0;
    border: none;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.9) 40%, rgba(255,255,255,0.9) 60%, transparent 100%);
}

h2{
    color: rgb(80, 80, 80);
    font-family: "Stack Sans Headline", sans-serif;
    font-size: 3rem;
}

h4{
    color: rgb(80, 80, 80);
    font-family: "Stack Sans Headline", sans-serif;
    font-size: 2rem;
}

p{
    color: white;
    font-family: "Stack Sans Headline", sans-serif;
    font-size: 2rem;
}

.card{
    background-color: rgba(255, 255, 255, 0.096);
    max-width: 20vw;
    max-height: 57vh;
    min-width: 20vw;
    min-height: 57vh;
    backdrop-filter: blur(10px);
    border-radius: 25px;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.199);
    padding-bottom: 10px;
    transition: 0.2s;
    margin: 20px;
}

.row{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center
}

.col{
    display: flex;
    flex-direction: column;
}

.card:hover{
    background-color: rgba(255, 255, 255, 0.178);
    transition: 0.2s;
}

.card .img {
    width: 100%;
    max-width: 240px;
    height: auto;
    border-radius: 20px;
    margin: 0 auto;
}

button{
    background-color: rgba(255, 235, 205, 0);
    border-style: none;
    
}

a{
    text-decoration: none;
    color : white;
}

footer{
    margin-top: auto;
}

span{
    color: rgb(53, 53, 53);
    font-family: "Stack Sans Headline", sans-serif;
    font-size: 1rem;
}

@media (min-width: 2560px) {
    .card .img{
        max-width: 450px;
    }

    h1{
        font-size: 6rem;
    }

    h2{
        font-size: 4rem;
    }

    span{
        font-size: 1.5rem;
    }


}

@media (max-width: 768px) {
    body {
        padding-left: 4vw;
        padding-right: 4vw;
        min-height: 100vh;
    }

    h1 {
        font-size: 2.8rem;
    }

    .line {
        width: 60vw;
        margin-top: 14px;
    }

    h2 {
        font-size: 2rem;
    }

    p {
        font-size: 1.05rem;
    }

    .row {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .card {
        width: 100%;
        max-width: 100%;
        min-width: auto;
        max-height: none;
        min-height: auto;
        margin: 10px 0;
    }

    .img {
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    button {
        width: 100%;
    }

    .card .img{
        width: 70%;
        max-width: 70%;
        height: auto;
    }
}
