@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@200&display=swap');
:root{
    --orange: rgb(231, 123, 0);
    --purple: rgb(117, 0, 172);
    --green: rgb(0, 167, 69);
    --blue: rgb(0, 104, 189);
    --grey: rgb(122, 122, 122);
}
body{
    background-color: #111;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 95vh;
    flex-direction: column;
}
h1{
    font-family: 'Unbounded', cursive;
}
main div{
    display: flex;
    gap: 1em;
    justify-content: center;
    margin-bottom: 1em;
}
figure{
    text-align: center;
    width: 120px;
    height: 120px;
    border-radius: 0.5em;
    border-width: 0.5em;
    border-style: solid;
    margin: 0;
}
figure img{
    height: 80px;
    max-width: 80px;
    object-fit: contain;
    margin-top: 0.5em;
}
figure figcaption{
    margin-top: 0.25em;
}
figure img{
    scale: 0.9;
}
figure:hover img{
    scale: 1;
}
a, a:visited{
    color: white;
    text-decoration: none;
}
#basic figure{
    border-color: var(--grey);
}
#dynamic figure{
    border-color: var(--blue);
}
#uilibrary figure{
    border-color: var(--green);
}
#framework figure{
    border-color: var(--purple);
}
#tools figure{
    border-color: var(--orange);
}
figure:hover{
    cursor: pointer;
    transition: all 0.2s linear;
}
#basic figure:hover {
    box-shadow: 0px 0px 14px 2px var(--grey) inset;
}
#dynamic figure:hover {
    box-shadow: 0px 0px 14px 2px var(--blue) inset;
}
#uilibrary figure:hover {
    box-shadow: 0px 0px 14px 2px var(--green) inset;
}
#framework figure:hover {
    box-shadow: 0px 0px 14px 2px var(--purple) inset;
}
#tools figure:hover {
    box-shadow: 0px 0px 14px 2px var(--orange) inset;
}