*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto';
}

header{
    background-color: rgb(61, 61, 61);
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgb(198, 200, 200);
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 1px;
    box-shadow: 0px 0px 10px black;
}
body{
    background-color: rgb(20, 20, 20);
}

.container{
    margin: 6px;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    grid-auto-rows: auto;
    gap: 20px;
    justify-items: center;
}

.card{
    background: linear-gradient(hsl(0, 0%, 11%),hsl(0, 0%, 20%));
    background-color: rgb(53, 53, 53);
    width: clamp(200px,100vw,300px);
    height: clamp(200px,200vw,300px);
    display: flex;
    flex-direction: column;
    padding: 40px;
    align-items: center;
    border-radius: 20px;
    box-shadow: 6px 6px 0px rgba(79, 79, 79, 0.355);
    border: 2px solid rgb(55, 55, 55);
    border-width: 2px 2px 2px 0;
    transition: 150ms ease-in-out;
    gap: 50px;
}

.card:hover{
    transform: translateY(-10px);
}

.flag{
    width: clamp(100px,100vw,200px);
    position: relative;
    overflow: hidden;
    margin-top: auto;
}

.title{
    box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.504);
    background-color: rgb(0, 0, 0);
    border-radius: 20px;
    width: 100%;
    font-size: 24px;
    text-align: center;
    font-weight: 500;
    color: hsl(0, 0%, 81%);
    padding: 3px;
    margin-top: auto;
}

footer{
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(40, 40, 40);
    position: sticky;
    bottom: 0%;
    z-index:6;
}

.github{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

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