@font-face {
    font-family: 'PTSans';
    src: url('/fonts/PTSans-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'PTSans';
    src: url('/fonts/PTSans-Bold.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}
* {
    box-sizing: border-box;
    transition-duration: 0.3s;
}
body {
    font-family: 'PT Sans', sans-serif;
    font-size: 30px;
    font-weight: 400;
    line-height: normal;
    color: black;
    margin: 0;
    padding: 0;
}
a {
    color: #FFFFFF;
    text-decoration: none;
}
h1 {
    font-size: 50px;
    line-height: normal;
    font-weight: 800;
    text-transform: uppercase;
    margin: -20px 0 0;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
    letter-spacing: 2px;
}
header {
    position: fixed;
    height: 100px;
    width: 100%;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}
header .logo {
    height: 80px;
    width: auto;
}
div.content {
    display: flex;
    top: 0;
    height: calc(100vh - 100px);
    width: 1250px;
    max-width: 100%;
    margin: 0 auto;
    background: url("/images/cecko.png") no-repeat;
    background-position: center bottom;
    background-size: 62vh auto;
    justify-content: space-between;
    align-items: center;
    padding-top: 100px;
}
div.content > div {
    width: 50%;
}
div.content > div:last-child {
    text-align: right;
}
menu {
    list-style: none;
    padding: 0;
}
li a {
    display: inline-block;
    padding: 10px 60px;
    border-radius: 20px;
    font-size: 30px;
    font-weight: 800;
    color: white;
    background-color: black;
    height: auto;
    margin: 30px 0;
    box-shadow: 4px 4px 10px rgba(0,0,0,0.7);
}
li a:hover {
    box-shadow: 8px 8px 12px rgba(0,0,0,0.7);
    cursor: pointer;
    color: black;
}
footer {
    display: flex;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    font-size: 25px;
    font-weight: 800;
    color: #FFFFFF;
    background-color: black;
    align-items: center;
    justify-content: center;
    letter-spacing: 1px;
}
@media (max-width: 767px) {
    header {
        position: relative;
        height: 300px;
        text-align: center;
    }
    div.content {
        padding-top: 30px;
        flex-direction: column;
        justify-content: flex-start;
    }
    div.content > div {
        width: 100%;
        min-width: 100%;
        text-align: center !important;
    }
    menu {
        margin: 0;
    }
    footer {
        position: relative;
        text-align: center;
    }
}
