@font-face {
    font-family: Kurale;
    src: url(../fonts/kurale.ttf);
}

@font-face {
    font-family: Poppins;
    src: url(../fonts/poppins.ttf);
}

@font-face {
    font-family: Poppins;
    src: url(../fonts/poppins-bold.ttf);
    font-weight: bold;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    color: #151922;
    font-size: 100%;
}

body {
    background-color: #978d8d5e;
    font-family: Poppins;
    width: 100%;
}

.main-heading {
    font-family: Kurale;
    font-size: 3rem;
    text-align: center;
    margin-top: 20px;
}

.main-heading::after {
    content: "";
    display: block;
    width: 200px;
    border-bottom: 2px solid #151922;
    margin: 0 auto;
}

a {
    text-decoration: none;
    color: #151922;
}

/* * * * * * HEADER * * * * * */
/* * * * MENU * * * */
.navigation-background {
    background-color: #A64969;
    height: 80px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-family: Kurale;
    border-bottom: 1px solid #151922;
    position: fixed;
    top: 0px;
    z-index: 1000;
    width: 100%;
}

.logo-menu {
    line-height: 80px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.logo {
    width: 60px;
    height: auto;
    margin-left: 50px;
}

.logo-text {
    height: 70px;
    margin-left: 10px;
}

nav {
    margin-right: 50px;
    z-index: 500;
}

nav li {
    display: inline-block;
    list-style-type: none;
    margin-right: 10px;
}

nav ul a {
    font-size: 2rem;
}

nav ul a:hover {
    border-bottom: 2px solid #CA6B88;
    text-shadow: 0 0 10px #CA6B88;
}

.menu-icon{
    display: none;
    font-size: 40px;
    cursor: pointer;
}

/* Datum v tabulkách */
.date {
    width: 90px;
    vertical-align: top;
}

.future-events .date {
    width: 180px;
    vertical-align: top;
}

/* * * * MAIN PHOTO * * * */
.main-photo img {
    margin-top: 80px;
    display: block;
    width: 100%;
    height: auto;
}

/* * * * * * FOOTER * * * * * */
footer {
    background-color: #A64969;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

/* * * * SPONSORS * * * */
.sponsors {
    margin-top: 20px;
    margin-bottom: 20px;
    padding-right: 20px;
    width: 50%;
    text-align: center;
}

.sponsors h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.sponsors-logo {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly; 
    align-items: end;
}

.sponsors-logo img {
    width: 150px;
}

/* * * * CONTACT * * * */
.footer-contact {
    border-left: 2px solid #CA6B88;
    margin-top: 20px;
    margin-bottom: 20px;
    padding-left: 20px;
    width: 50%;
}

.footer-contact h3 {
    font-size: 1.3rem;
}

.footer-contact h4 {
    font-size: 1.3rem;
    font-weight: 300;
}

.footer-contact p {
    margin-top: 20px;
    font-size: 1.2rem;
}

.contact-icons {
    display: inline-block;
    line-height: 20px;
    vertical-align: middle;
}

.footer-contact img {
    width: 40px;
    margin-right: 10px;
    margin-top: 10px;
}

.footer-contact h4 {
    margin-top: 10px;
}

.footer-contact a {
    color: #151922;
    font-weight: bold;
}