
#master {
    color: rgb(250, 250, 250);
    background-color: rgb(5, 5, 5);
}



#links {
    text-decoration: none;
    color: rgb(250, 250, 250);
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.link {
    display: flex;
    justify-content: center;
    align-items: center;

    margin: 5px;
    min-width: 200px;


    border: 3px solid white;
    border-radius: 10rem;
    background-color: rgb(150, 0, 0);
    height: 8rem;
    text-align: center;
    transition: .5s;

    &:hover {
        background-color: rgb(225, 0, 0);
    }

    .inner {
        display: flex;
        justify-content: center;
        align-items: center;

        h2 {
            padding: 25px;
        }
    }
}

.hr {
    border: 1px solid rgb(250, 250, 250);
}

img {
    width: 3rem;
    margin-right: 10px;
}