@font-face {
    font-family: Roboto-B; 
    src: url("fonty/Roboto-Black.ttf"); 
}

@font-face {
    font-family: Roboto-R; 
    src: url("fonty/Roboto-Regular.ttf"); 
}

@font-face {
    font-family: Roboto-T; 
    src: url("fonty/Roboto-Thin.ttf"); 
}

@font-face {
    font-family: Roboto-I; 
    src: url("fonty/Roboto-Italic.ttf"); 
}

* {
    padding: 0;
    margin: 0;
    outline: none;
    border: 0;
    border-spacing: 0;
    text-decoration: none;
    font-size: 100%;
    font-family: Roboto-I;
    font-weight: 300;
    color: #afafaf;
    box-sizing: border-box;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

html,
body {
    width: 100%;
    height: 100%;
}

body {  
    background-color: black;
    background-image: url("img/bg2.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.main {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    height: 100%;
}

.main .header,
.main .items {
    display: flex;
    align-items: stretch;
    flex-direction: column;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}

/*
    Header
*/
h1 {
    font-family: Roboto-T;
    font-size: 36pt;
    color: #ffffff;
    text-transform: uppercase;
}
    
    h2 {
    font-family: Roboto-B;
    font-size: 53pt;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: -30px;
}

/*
    Items
*/
.main .items,
.main .items .item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.main .items .item {
    padding: 20px;
}

.main .items .item .left {
    display: flex;
    justify-content: end;
}

.main .items .item .right {
    display: flex;
    justify-content: flex-start;
}

.main .items .item .fotos,
.main .items .item .texts,
.main .items .item .buttons {
    padding: 5px 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.main .items .item .button {
    border: 1px solid #ffffff;
    padding: 15px 70px 15px 70px;
    display: inline-table;
    margin: 0px 0px 0px 0px;
    bottom: 0;
}
    
.main .items .item .button p {
    color: #ffffff;
    font-family: Roboto-B;
    text-transform: uppercase;
    text-wrap: nowrap;
}
    
.main .items .item .button:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.main .items .item .foto-omne {
    width: 200px;
    border-radius: 50%;
    margin: 20px;
}

.main .items .item h1 {
    font-size: 18pt;
}

.main .items .item .koder,
.main .items .item .fotograf {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50%;
}

/*
    Footer
*/
.main .footer {
    padding: 20px;
    text-align: center;
}

/*
    Mobile
*/
@media (max-width: 1130px) {

    html, body {
        height: auto;
    }

    .main .items {
        flex-direction: column;
    }

    .main .items .item .left,
    .main .items .item .right {
        justify-content: center;
    }
}












