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

html {
    font-size: 87.5%;
}

@font-face {
    font-family: Inter;
    src: url(assets/fonts/Inter-VariableFont_slnt\,wght.ttf);
}

:root {
    --clr--white:hsl(0, 0%, 100%);
    --clr--grey700:hsl(0, 0%, 20%);    
    --clr--grey800: hsl(0, 0%,12%);    
    --clr--grey900: hsl(0, 0%, 8%);    
    --clr--green: hsl(75, 94%, 57%);
}
@keyframes popup {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-5px);
    }
}
.popup {
    animation-name:popup;
    animation-timing-function: linear;
}
body {
    font-family: Inter;
    border:1px solid black;
    display:flex;
    min-height:100vh;
    justify-content: center;
    align-items: center;
    background-color:  var(--clr--grey900);
}

.container {
    padding:2rem 2rem;
    /* width: 100%; */
    min-width:350px;
    min-height:450px;
    border-radius: 10px;
    display:flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    gap:1rem;
    background-color: var(--clr--grey800);
}

.container .text-container {
    text-align: center;
    line-height: 2em;
}
.container .text-container h1 {
    color: var(--clr--white);
    font-size: 1.7rem;
    font-weight: 700;
}
.container .text-container h4 {
    color: var(--clr--green);
    font-weight: 600;
}
.container .description p {
    color: var(--clr--white);
    font-weight: 200;
}
.links {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items:center;
    width:100%;
    height: 30%;
    gap:0.9em;
    
}

.container .img-container img {
    border-radius: 50%;
    width:80px;
    height:80px;
}
.container .links a {
    width:100%;
    text-align: center;
    
}
.container .links button {
    width:100%;
    border:none;
    color: var(--clr--white);
    background-color: var(--clr--grey700);
    padding:0.9em 0em;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor:pointer;
}

.container .links button:hover {
    background: linear-gradient(to left, #00C853, #B2FF59);
    animation: popup 0.5s ease;
    animation-fill-mode: forwards;
    color:#111;
}

