@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600&display=swap');

body {
    margin:0;
}

/* Header System */

.active {
    color: darkgreen;
    font-weight: bold;
}

.active:after {
    background-color: darkgreen;
}

header {
    height: 10vh;
    width: 100vw;
    background-color: white;
    position: sticky;
    top:0;
    margin:0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Poppins', sans-serif;
}

.navcol {
    width: 200px
}

header table tr th a {
    color: black;
    text-decoration: none;
    transition-duration: 0.4s;
    display: inline-block;
    position: relative;
}

header table tr th a:after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: black;
    transform-origin: bottom left;
    transition: transform 0.25s ease-out;
  }

header table tr th a:hover:after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.hl {
    transition-duration: 400ms;
    height:8vh;
    background-image: url(images/logo.png);
    background-position: 50%;
    background-size: 50%;
    background-repeat: no-repeat;
}

.hidden {
    opacity:0;
    width: 0;
}
.shown {
    opacity:1;
    width: 200px;
}
    
/* Title Section */
    
 .titlesection {
    height: 75vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    color: rgb(67, 168, 84);
    font-size: 50px;
    background: linear-gradient( rgba(29, 31, 29, 0.75), rgba(29, 31, 29, 0.75) ), url(images/titleimage2.jpeg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Main Section */

.mainsection {
    padding-top: 10vh;
    padding-bottom: 10vh;
    width: 100vw;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    color: black;
    text-align: center;
    border-bottom: 5px dashed rgb(2, 77, 14);
}
    
.textwrap {
    width: 75vw;
}
.mainsection th {
    padding: 20px;
}

.mainsection th h1 {
    font-size: 30px;
}

.last {
    border-bottom: none;
}


/* Events */

#eventtable tr td {
    padding:10px;
}

.event {
    background-color: #e3e3e3;
    border-radius: 10px;
    border: 3px dashed rgba(29, 31, 29, 0.7);
    padding: 20px;
    transition-duration: 200ms;
}

.event:hover {
    background-color: #cdcdcd;
}

.event table tr td {
    font-size: 20px;
    width: 25vw;
}

.noShow {
    display: none;
}