/*Import font*/

@font-face {
    font-family: "YanoneKaffeesatz-Regular";
    src: url("/testZone/lib/Yanone_Kaffeesatz/static/YanoneKaffeesatz-Regular.ttf") format("truetype");
}


/*Common tag review*/

body {
    font-family: YanoneKaffeesatz-Regular;
    margin: 20px;
}

a {
    text-decoration: none;
    color: #000000;
}


/*Custom style*/

.projectTitle {
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.85);
    font-size: 5vmin;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    text-align: center;
}

.cb-tile {
    width: 33.33vw;
    height: 200px;
    padding: 20px;
    background-image: linear-gradient(120deg, #84fab0 0%, #8fd3f4 100%);
}

@media screen and (max-width: 600px) {
    .cb-tile {
        width: 90%;
    }
}

.tile-container {
    display: inline-block;
}

.tile {
    background-size: cover;
    background-position: center;
    height: 100%;
    position: relative;
}

#responsiveTemplateTile {
    background-image: url("/testZone/img/responsive.jpg");
}

#budgetsTemplateTile {
    background-image: url("/testZone/img/coins.jpg");
}

#calendarScheduleTemplateTile {
    background-image: url("/testZone/img/calendar.jpg");
}

#scrollingSystemTile {
    background-image: url("/testZone/img/mouse.jpg");
}

.pageTitle {
    font-size: 6vmin;
    text-align: center;
    padding: 5px;
}

.tests-container {
    padding: 20px;
    background-color: #ededed;
    margin-bottom: 10px;
}

.pageTitleContent {
    margin-bottom: 10px;
}