@font-face {
    font-family: Calistoga;
    src: url("Calistoga-Regular.ttf");
}

body{
    background: url("images/bg.jpg");
    background-size: cover;
    background-attachment: fixed;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}

h1, h2, .highlight, .sponsor, .navbar a{
    font-family: Calistoga;
    margin-top: 0;
    text-decoration: underline;
    text-decoration-color: #0e7a9e;
}

.navbar{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    margin-top: 20px;
}

.navbar a{
    color: black;
    background: white;
    padding: 10px;
    min-width: 100px;
    text-align: center;
    border-right: 2px;
    border-top: 0;
    border-bottom: 0;
    border-left: 0;
    border-color: #0e7a9e;
    border-style: solid;
}

.navbar a:hover{
    box-shadow: inset 0px 0px 10px 0px rgba(14,122,158,1);
}

.navbar a:first-of-type{
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.navbar a:last-of-type{
    border-right: 0;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.container{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.sponsor img{
    margin-top: 5px;
}

.logo{
    margin: auto;
    padding: 20px 20px 0px 20px;
    height: 250px;
}

.textblock{
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 20px;
    padding: 20px;
    max-width: 1000px;
    background: white;
    border-radius: 20px;
}

.textblock p{
    text-align: justify;
}

.textblock a{
    color: rgba(14,122,158,1);
    text-decoration: none;
}

.textblock a:hover{
    text-decoration: underline;
}

.newspics{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.newspics img{
    max-width: 300px;
    max-height: 300px;
    border-radius: 10px;
    transition: transform 0.2s;
}

.newspics img:active{
    transform: scale(2);
}

.newspics figure{
    margin: 0;
}

.date{
    color: #616161;
    font-style: italic;
}

.playerprofiles{
    display: flex;
    flex-wrap: wrap;
    max-width: 100%;
    justify-content: space-evenly;
}

.profile{
    margin-left: 10px;
    margin-right: 10px;
    width: 500px;
    background: white;
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 20px;
}

.profile img{
    width: 100%;
    border-radius: 20px;
    margin-bottom: 20px;
}

.playerinfo{
    padding: 7px 0px 7px 0px;
}

.sponsor{
    padding: 10px;
    margin-bottom: 20px;
    background: white;
    border-radius: 10px;
    font-family: Calistoga;
    text-align: center;
}

.footer{
    color: white;
}

.footer a{
    color: white;
    text-decoration: none;
}

.footer a:hover{
    text-decoration: underline;
}

@media (max-width: 1090px) {
    body{
        background: #1c3b46;
        font-size: 36px;
    }

    .navbar a{
        width: 100vw;
        border-right: 0;
        margin-bottom: 5px;
    }

    .navbar a:first-of-type{
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }
    
    .navbar a:last-of-type{
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }

    .profile{
        width: 100vw;
    }

    .navbar{
        margin-top: 0;
    }

    .newspics img{
        max-width: 100%;
        max-height: none;
        margin-top: 20px;
    }
}