@font-face {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 500;
    src: url('../../fonts/montserrat/static/Montserrat-Medium.ttf') format('woff2');
}

* {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: x-large;
    width: 80%;
    height: 100%;
    background: url("./images/2020-03-29_00.27.37.jpg") no-repeat center center fixed;
    background-size: cover;
    margin-left: auto;
    margin-right: auto;
}

.box {
    text-align: center;
    align-items: center;
    margin: 20px;
    border: 2px solid #2ea9b9;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 4px 4px 10px rgba(38, 38, 38, 0.88);
    padding: 15px;
    height: 215px;
    width: 240px;
    padding-top: 10px;
}

.box .text {
    padding: 10px 10px 5px 10px;
    text-decoration: none;
    font-size: 1em;
    color: rgb(41, 55, 63);
    text-align: center;
    align-items: center;
}

#container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 5%;
}

.box .image {
    height: 100px;
    width: 100px;
    object-fit: cover;
}

.redtext {
    color: red;
}

.greentext {
    color: #1b881b;
}

.orangetext {
    color: #fd9001;
}


.backbutton {
    margin: 40px auto 40px;
    align-items: center;
    background-image: linear-gradient(144deg, #ff8940, #f3d042 50%, #72eb00);
    border: 0;
    border-radius: 8px;
    box-shadow: rgba(11, 94, 154, 0.2) 0 15px 30px -5px;
    box-sizing: border-box;
    color: #000000;
    display: flex;
    font-family: Phantomsans, sans-serif;
    font-size: 20px;
    justify-content: center;
    line-height: 1em;
    max-width: 100%;
    min-width: 140px;
    padding: 3px;
    text-decoration: none;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    white-space: nowrap;
    cursor: pointer;
}

.backbutton:active,
.backbutton:hover {
    outline: 0;
}

.backbutton span {
    background-color: rgb(255, 255, 255);
    padding: 16px 24px;
    border-radius: 6px;
    width: 100%;
    height: 100%;
    transition: 300ms;
}

.backbutton:hover span {
    background: none;
}

@media (min-width: 768px) {
    .backbutton {
        font-size: 24px;
        min-width: 196px;
    }
}