
*, *::after, *::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html{
    min-height: 100%;
    font-size: 16px;
    display: grid;
}
body {
    min-height: 100%;
    font-family: Arial, sans-serif;
    font-style: normal;
    text-align: center;
    color: var(--primary-color);
    background: linear-gradient(#ffffff 90%, #808080 100%);
    background-attachment: fixed;
}

h1,h2{
    font-family: "Bebas Neue", sans-serif;
}
h2{
    color: #808080;
}

p{
    margin: 0.5rem 0
}

body{
    display: flex;
    justify-content: center;
    align-items: center;
}
main {
    padding: 40px;
    display: grid;
    justify-items: center;
}
img {
    max-width:480px;
    width: 96%;
    margin-bottom: 20px;
}
.container{
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    justify-items: center;
    padding: 0.2rem;
    margin: 1rem 0;
}

a{
    appearance: none;
    text-decoration: none;
    color: white;
    background-color: #000;
    padding: 0.8rem 1.2rem;
    border-radius: 1rem;
    font-size: 1rem;
    font-weight: bold;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
    transition: background-color 0.3s, box-shadow 0.3s;
}
a:hover{
    background-color: #606060;
    box-shadow: 4px 4px 10px rgba(0,0,0,0.4);
}