
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Inter, sans-serif;
}

body {
    background: url('./images/cool-background-mobile.png');
    background-repeat: no-repeat;
    background-position: cover;
    background-size: cover;
}

.proj-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 5%;
}

@media only screen and (min-width: 950px) {

    body {
        background: url('./images/cool-background.png');
        background-repeat: no-repeat;
        background-position: cover;
        background-size: 100vw;
    }

    .proj-container {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        margin-top: 5%;
    }
}