/* Keeps the website from having a bottom scrollbar from bootstrap */
html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-color: #222;
    color: white;
    display: block;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1%;
}

.project {
    border: 1px solid #444;
    border-radius: 10px;
    background-color: #222;
    color: #222;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 5%;
    margin-top: 5%;
    max-width: 350px;
    max-height: 350px;
}

.project h3 {
    color: #fff;
}

.project p {
    color: #ccc;
}

.logo {
    background-color: #333;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

a {
    text-decoration-color: white;
}