* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: sans-serif;
    background-color: #d9d9d9;
}

.main-container {
    max-width: 1100px;
    height: 100vh;
    margin: 0 auto;
    margin-top: 120px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
}

.box {
    background-color: #57b5eb;
    width: 300px;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
}

.plus {
    font-size: 100px;
    font-weight: 900;
    color: #f5f5f5;
}

.text {
    font-size: 28px;
    font-weight: 300;
    color: #f7f4fa;
    letter-spacing: 2px;
}