@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

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

body {
    padding: 2rem 1rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #dfdfdf;
    background: rgb(19, 27, 48);
    background: -moz-linear-gradient(74deg, rgba(19, 27, 48, 1) 0%, rgba(31, 45, 80, 1) 50%, rgba(19, 27, 48, 1) 100%);
    background: -webkit-linear-gradient(74deg, rgba(19, 27, 48, 1) 0%, rgba(31, 45, 80, 1) 50%, rgba(19, 27, 48, 1) 100%);
    background: linear-gradient(74deg, rgba(19, 27, 48, 1) 0%, rgba(31, 45, 80, 1) 50%, rgba(19, 27, 48, 1) 100%);
}

a {
    text-decoration: none;
    color: inherit;
}

.backoffice {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.backoffice__header {
    text-align: center;
    margin-bottom: 4rem;
}

.backoffice__main {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.backoffice__button {
    flex: 0 1 13rem;
    padding: 0 2rem;
    text-align: center;
}

.backoffice__button .backoffice__project-image {
    width: 13rem;
}

.backoffice__button .backoffice__project-text-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 13rem;
    height: 13rem;
    font-size: 3rem;
}

.backoffice__button .backoffice__project-text-image--blue {
    color: blue;
}

.backoffice__button h3 {
    padding: 2rem 0;
}
