@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

.attribution { font-size: 11px; text-align: center; color: var(--Grey9) }
.attribution a { color: hsl(228, 45%, 44%); }

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root{
    --Green : hsl(75, 94%, 57%);
    --Grey7 : hsl(0, 0%, 20%);
    --Grey8 : hsl(0, 0%, 12%);
    --Grey9 : hsl(0, 0%, 8%);
}

body{
    background-color: var(--Grey9);
    font-family: "Inter", sans-serif;
    color: white;
}

main{
    height: 98vh;
    display: flex;
    justify-content: center;
}
footer{
    background-color: white;
}

.card{
    background-color: var(--Grey8);
    height: fit-content;
    width: fit-content;
    border-radius: 16px;
    margin-top: 4vh;
}
.container{
    padding: 32px;
    text-align: center;
}
.text{
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}
.image{
    margin: 16px
}
.btnContainer{
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}
.btn{
    text-decoration: none;
    color: white;
    background-color: var(--Grey7);
    width: 24vw;
    padding: 16px;
    border-radius: 8px;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.4px;
}
@media screen and (max-width:1000px) {
   .btn{
       width: auto;
   }
    
}
.btn:hover{
    background-color: var(--Green);
    color: var(--Grey9);
}

img{
    border-radius: 100%;
    width: 32%;
}

h1{
    font-size: 1.5rem;
}

h2{
    color: var(--Green);
    font-size: 16px;
    margin-bottom: 24px;
    font-size: 1rem;
}
p{
    font-size: 0.8rem;
}