/* This file is specifically for links.html */

.links{
    width:100%; 
    max-width: 32rem;
    flex-direction: column;
    gap: 1rem; 
    justify-content: center; 
    margin-top: 2rem;
}

.btn{
    background-color: #e0f4d9;
    padding: .3rem;
    border-radius: 30px;
    display: flex;
    justify-content: start; 
    gap: 1rem;
    transition: transform .2s;
    color: #1a3027;
    box-shadow: #1a302759 0px 5px 15px;
    font-weight: 500;
    text-transform: capitalize;
}

.content-wrapper{
    display: flex;
    width: 100%;
    padding-right: 1rem;
    align-items: center;
    justify-content: space-between;
}

.light-green {
    color: #e0f4d9;
}

.btn img{
    aspect-ratio: 1/1;
    height: 3rem;
    object-fit: cover;
    border-radius: 30px;
}

.btn:hover{
    /* background-color: #e0f4d9; */
    background-color: #1B3229;
    transform: scale(1.01);
}

.gif-frame{
    width:100%; 
    display:flex; 
    justify-content: center; 
    margin-top: 3rem;
}

.card{
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgb(56, 82, 75), rgb(120, 146, 125));
}

h1{
    color: #e0f4d9;
    font-size: 1.5rem;
    margin-top: 1rem;
}

.icon{
    aspect-ratio: 1/1;
    height: 6rem;
    object-fit: cover;
    border-radius: 60px;
}

/* Bullshit */
header{
    display:none;
}

.page-wrapper{
    height: 100dvh;
    padding: 0;
}

.page{
    height: 100%;
    margin: 0 auto;
    max-width: none;
}

.container{
    height: 95%;
    height: -webkit-fill-available;
}

.card{
    height: 100%;
}

/* Bullshit */


/* Tablet */
@media screen and (max-width: 1200px) {
    h1{
        font-size: 1.2rem;
    }
}

/* phone */
@media screen and (max-width: 600px) {
    h1{
        font-size: 1rem;
    }
}