body {
    background-color: #212132;
    color: white;
    font-family: Inter;
    overflow-x: hidden;
}

img {
    display: block;
}

.glow {
    filter: drop-shadow(0px 0 20px rgba(0, 153, 255, 1));
}

.centred {
    margin-block-start: 0;
    margin-block-end: 0;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
    text-align: center;
}

.title {
    font-size: 70px;
    margin: 150px auto 50px auto;
}

.intro {
    margin: 0 auto 50px auto;
}

.projects {
    display: grid;
    row-gap: 50px;
    grid-template-columns: auto auto auto;
}

.project, .projectfirst {
    color: white;
    text-decoration: none;
    background-color: rgb(53, 53, 70);
    width: 225px;
    height: 270px;
    border-radius: 30px;
    border: white 2px solid;
    padding: 25px;
    display: block;
}

.project {
    margin-left: 50px;
}

.button {
    display: block;
    background-color: #0d6efd;
    width: 100px;
    border-radius: 5px;
    margin: 30px auto;
    padding: 15px;
    text-decoration: none;
    color: white;
}

@media screen and (max-width: 768px) {
    .projects {
        grid-template-columns: 1fr;
        row-gap: 30px;
        justify-items: center;
    }

    .project, .projectfirst {
        margin-left: 0;
    }
}

.tosthing1 {
    max-width: 800px;
    text-align: left;
}