@charset "utf-8";

*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color:#F5F5F5;
    font-family: "Montserrat";

}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    flex-wrap: wrap;
    background: #101010;
}

.box-header {
    position: absolute;
    width: 97vw;
    height: 7vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #101010;
    top: 0;
    margin: 20px;
}

.box-header:before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: #fff;
    z-index: -1;
}

.box-header:after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: #fff;
    z-index: -2;
    filter: blur(40px);
}

.box-header:before,
.box-header:after {
    background: linear-gradient(235deg,#772aff,#010615,#2196F3);
}

.box-header .class {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    display: block;
    background: rgba(255,255,255,.1);
    pointer-events: none;
}


.box-header .content {
    padding: 20px;
    width: 100%;
    text-align: center;
}

h1 {
    font-family: "Bebas Neue";
}

.box {
    overflow: hidden;
    position: relative;
    width: 97vw;
    height: 93vh;
    top: 7vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #101010;
}

.box:before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: #fff;
    z-index: -1;
}

.box:after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: #fff;
    z-index: -2;
    filter: blur(40px);
}

.box:before,
.box:after {
    background: linear-gradient(235deg,#772aff,#010615,#2196F3);
}

.box .class {
    position: absolute;
    top: 0;
    left: 0;
    width: 50vw;
    height: 100vh;
    display: block;
    background: rgba(255,255,255,.1);
    pointer-events: none;
}


.box .content {
    width: 100%;
    height: 100%;
}

.row {
    width:97vw;
    padding:0px;
    margin-top:5vh;
}

.row::after {
    content: "";
    clear: both;
    display: table;
}

[class*="col-"] {
    float: left;
}

.menu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.menu li {
    padding: 8px;
    margin-bottom: 7px;
    background-color: #33b5e5;
    color: #ffffff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}

.menu li:hover {
    background-color: #0099cc;
}

/* For mobile phones: */
[class*="col-"] {
    width: 100%;
}

@media only screen and (min-width: 600px) {
    /* For tablets: */
    .col-s-1 {width: 8%;margin:.5vw;}
    .col-s-2 {width: 18%;margin:.5vw;}
    .col-s-3 {width: 23%;margin:.5vw;}
    .col-s-4 {width: 31.33%;margin:.5vw;}
    .col-s-5 {width: 38%;margin:.5vw;}
    .col-s-6 {width: 46.5vw;margin:.5vw;}
    .col-s-7 {width: 64.66%;margin:.5vw;}
    .col-s-8 {width: 73%;margin:.5vw;}
    .col-s-9 {width: 78%;margin:.5vw;}
    .col-s-10 {width: 88%;margin:.5vw;}
    .col-s-11 {width: 98%;margin:.5vw;}
}
@media only screen and (min-width: 1000px) {
    /* For desktop: */
    .col-1 {width: 8%;margin:.5vw;}
    .col-2 {width: 18%;margin:.5vw;}
    .col-3 {width: 23vw;margin:.5vw;}
    .col-4 {width: 31.33%;margin:.5vw;}
    .col-5 {width: 38%;margin:.5vw;}
    .col-6 {width: 48%;margin:.5vw;}
    .col-7 {width: 64.66%;margin:.5vw;}
    .col-8 {width: 73%;margin:.5vw;}
    .col-9 {width: 78%;margin:.5vw;}
    .col-10 {width: 88%;margin:.5vw;}
    .col-11 {width: 98%;margin:.5vw;}
}

.row-1 {height:8vh;}
.row-2 {height:13vh;}
.row-3 {height:23vh;}
.row-4 {height:31.33vh;}
.row-5 {height:38vh;}
.row-6 {height:48vh;}
.row-7 {height:64.66vh;}
.row-8 {height:73vh;}
.row-9 {height:78vh;}
.row-10 {height:88vh;}
.row-11 {height:98vh;}

.strom-table {
    width: 100%;
}

.strom-table tr {
}

.strom-table td,th {
    border: 1px solid white;
}

.datetime {
    width: 100%;
    height: 45%;
    display: flex;
    justify-content:center;
    margin: 2%;
}
.time-div {
    width: 25%;
    height: 100%;
    background-color: white;
    color: black;
    margin: 2%;
    text-align: center;
    font-size: 4vh;
    font-weight: bold;
}
.time-div.time-div-year {
    width: 40%;
}