/* FONTS */
@font-face {
    font-family: 'rifficons';
    src: url('fonts/rifftideicons.woff') format('woff'),
        url('fonts/rifftideicons.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'RennerLight';
    src: url('fonts/renner-light-webfont.woff2') format('woff2'),
        url('fonts/renner-light-webfont.woff') format('woff');
    font-weight: lighter;
    font-style: normal;

}

@font-face {
    font-family: 'Renner';
    src: url('fonts/renner-lightitalic-webfont.woff2') format('woff2'),
        url('fonts/renner-lightitalic-webfont.woff') format('woff');
    font-weight: lighter;
    font-style: italic;

}

@font-face {
    font-family: 'Renner';
    src: url('fonts/renner-medium-webfont.woff2') format('woff2'),
        url('fonts/renner-medium-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'Renner';
    src: url('fonts/renner-mediumitalic-webfont.woff2') format('woff2'),
        url('fonts/renner-mediumitalic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: italic;

}

body {
    overflow-x: hidden;
    font-family: 'Renner';
    width:100vw;
    max-width:100vw;
    margin:0;
}

.icon {
    font-family: 'rifficons' !important;
}

.content {
    font-size: 5rem;
    max-width:100vw;
    width:100vw;
    overflow-x:hidden;
}

.black_cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: .4;
}

.white_cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    opacity: .4;
}

.main-portrait-image,
.main-landscape-image {
    max-width: 100vw;
    min-width: 100vw;
    height: 100vh;
    object-fit: cover;
    max-height: 100vh;
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 0;
}

.main-portrait-image {
    display: none;
}

.spacer{
    width: 100vw;
    height: 100vh;
}

.schedule_container{
    background-color: rgba(0, 0, 0, 0.605);
    width: calc(100% - 50px);
    padding: 25px;
    position: relative;
    text-align: center;
}

.schedule_title{
    text-align: center;
    color: white;
    text-shadow: 3px white;
}

.schedule_grid{
    width: 80%;
    text-align: center;
    display: inline-block;
    vertical-align: middle;
}

.schedule_cell{
    background-color: rgba(0, 0, 0, 0.405);
    vertical-align:middle;
    border: 5px solid white;
    box-shadow: 0px 0px 5px 5px white;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    width: calc(80vw - 85px);
    height: calc(80vw - 85px);
    max-height: 300px;
    margin: 0px;
    max-width: 300px;
    display: inline-flex;
    text-align: center;
    align-self: center;
    padding: 30px;
    margin-top: 25px;
}

.schedule_cell hr {
    width: 90%;
    margin: 15px;
    color: white;
}

.schedule_day{
    position: absolute;
    top:10px;
    left:10px;
    color: white;
    text-shadow: 0px 0px 3px 3px white;
    font-size: 16px;
}

.sexy_spacer{
    padding: 100px 0px;
    position: relative;
    width: 100vw;
    background-color: rgba(0, 0, 0, 0.605);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.sexy_spacer img{
    position: relative;
    width: 30%;
}

#speedoinvite{
    position: relative;
    width: 100vw;
    background-color: rgba(0, 0, 0, 0.605);
    margin-top: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 0px;
}

.invite_title{
    font-size: 50%;
    margin: 5px;
    width: 100%;
    text-align: center;
    color: white;
    text-shadow: 3px white;
}

.invite{
    max-width: 800px;
    position: relative;
}

.schedule_activity{
    color: white;
    font-size: 24px;
    margin: 2px;
}

.schedule_activity a{
    color: rgb(118, 193, 255);
    text-decoration: none;
}

.schedule_subline{
    color: white;
    font-size: 15px;
    margin: 5px;
}

@media (max-width: 800px) {
    .main-landscape-image {
        display: none;
    }

    .main-portrait-image {
        display: block;
    }

    .sexy_spacer{
        flex-direction: column;
    }
    
    .sexy_spacer img{
        position: relative;
        width: 80%;
    }

    .invite{
        max-width: 80vw;
    }
    
    .schedule_cell{
        width: calc(80vw - 115px);
        height: unset;
        min-height:calc(80vw - 115px);
        padding-top:60px;
    }

}

/* FLEXES */
.flex {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flex-row {
    flex-direction: row;
}

.flex-column {
    flex-direction: column;
}

/* HEADERS */
.header {
    font-family: 'Renner', 'RennerLight', 'Century Gothic';
}

.xxs {
    font-size: 25%;
}

.xs {
    font-size: 50%;
}

.sm {
    font-size: 85%;
}

.med {
    font-size: 100%;
}

.lg {
    font-sizE: 125%;
}

.xl {
    font-size: 150%;
}

.xxl {
    font-size: 175%;
}

.xxxl {
    font-size: 200%;
}

/* COLORS */
/* Set main color themes here:  */
.whiteText {
    color: white;
}

/* BACKGROUND IMAGES */
/* Set main backgroudn images here */


.back-image-2 {
    background-image: url('../images/blue_stage.jpg');
    background-size: 100%;
}