html{
    width: 100%;
    height: 100%;
    background-color: white;
}

body{
    color: #fff;    
    font-family: 'Ubuntu';    
    margin: 32px;
    position: relative;
    background-color: #92b358;
    border-radius: 192px 6px 192px 6px;
    min-height: 90%;
    background-image: url(/img/bg.png);
    background-position-x: center;
    background-blend-mode: soft-light;
}

.menu{
    right: 0px;
    top: 24px;
    width: 64px;
    height: 48px;
    cursor: pointer;
    margin-right: 24px;
    position: absolute;
    border: 1px solid #43483c;
    background-color: #324a11;
    border-radius: 6px;
    padding-top: 8px;
    transition-duration: 250ms;
}

.line{
    width: 44px;
    margin: auto;
    height: 6px;
    margin-bottom: 10%;
    background-color: #fff;
    border-radius: 1px;
    transition-duration: 250ms;    
}

.menu:hover, .menu:active{
    background-color: white;
    border: 1px solid #abbb8f;
    transition-duration: 250ms;    
}

.menu:hover .line, .menu:active .line{
    background-color: #324a11;
    transition-duration: 250ms;    
}

.menulist{
    display: none;
    position: absolute;
    top: 56px;
    right: 0px;
    padding: 16px 32px 16px 200px;
    background-color: #fff;
    background-color: rgba(255, 255, 255, 0.88);
    text-align: right;
    border-radius: 4px;
    z-index: 100;
    border: 1px solid #c5c5c5;
}

.menulist li a{
    font-size: 32px;
    margin-bottom: 16px;
}

.container{
    margin: auto;
    padding: 64px;
}

.logo {
    font-size: 6em;
    font-weight: bold;
    text-align: center;
    font-family: 'Lobster Two';
    margin-bottom: 20px;
    line-height: 0.9em;
    text-shadow: 1px 2px 2px #2f3a1b;
}

.slogan{
    font-size: 2em;
    font-weight: bold;
    text-align: center;
    font-family: 'Ubuntu';
    text-shadow: 1px 1px 2px #2f3a1b;
    line-height: 1.3em;
    margin-bottom: 32px;
}

.schedule{
    color: #445624;
    border-radius: 8px;
    border: 1px solid gray;
    background-color: white;
    background-color: rgba(255, 255, 255, 0.7);
}

.entry{
    margin: 24px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #cacaca;
}

.entry:last-child {
    border: none;
}

.details{
    padding: 10px;
}

.title{
    font-weight: 700;
}

span.begin{
    font-weight: 700;
}

a {
    color: #445624;
    text-decoration: none;
}

a:focus, a:hover {
    color: #84a74b;
    text-decoration: underline;
}

@media (max-width: 768px) {

    body{
        border-radius: 64px 6px 64px 6px;   
    }

    .container{
        padding: 64px;
    }

    .title{
        text-align: center;
    }
}

@media (max-width: 480px) {

    html{
        min-width: 320px;
    }

    body{  
        margin: 16px;
        border-radius: 64px 6px 6px 6px;
    }

    .menu{
        right: 0px;
        top: 8px;
        width: 48px;
        height: 32px;
        cursor: pointer;
        margin-right: 8px;
        padding-top: 5px;
    }

    .line{
        width: 34px;
        height: 4px;
    }

    .container{
        padding: 16px;
        border-bottom-right-radius: 48px;
    }

    .logo{
        font-size: 3.5em;
        margin-top: 20px;
    }

    .slogan{
        font-size: 1.75em;
        margin-bottom: 16px;
    }

}

@media print{

    body{
        margin: 32px;
    }

    .slogan, .menu{
        display: none;
    }

    .container{
        padding: 16px;
    }

    .schedule{
        border: none;
    }

}