*{
    --file-path: url('../images/tropical_forest.jpg');
    font-family: Tahoma, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a{
    text-decoration: none;
}

li{
    list-style: none;
}

/*NAVBAR STYLING*/
.name{
    font-size: 25px;
}

.navbar{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background-color: teal;
    color: #fff;
}

.nav-links a{
    color: #fff;
}

/*NAVBAR MENU*/
.menu{
    display: flex;
    gap: 1em;
    font-size: 18px;
}

.menu li:hover{
    background-color: #4c9e9e;
    border-radius: 5px;
    transition: 0.3s ease;
}

.menu li{
    padding: 5px 14px;
}

/*DROPDOWN  MENU*/
.information{
    position: relative;
}

.dropdown{
    display: none;
    background-color: rgb(1, 139, 139);
    padding: 1em 0;
    position: absolute;
    border-radius: 8px;
    top: 100%;
    z-index: 99;
}

.dropdown li + li{
    margin-top: 10px;
}

.dropdown li{
    padding: 0.5em 1em;
    width: 8em;
    text-align: center;
}

.dropdown li:hover {
    background-color: #4c9e9e;
}

.information:hover .dropdown{
    display: block;
}

.background {
    position:absolute;
    background: var(--file-path);
    height: 100%;
    width: 100%;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: -99;
}

.body_info{
    position: absolute;
    top: 33%;
    left: 25%;
    transform: translate(0, -50%);
    width:50%;
    height:50%;
    padding: 15px;
    margin:auto;
}

.body_text{
    width:100%;
    height:100%;
    border-radius: 10px;
}

.body_img{
    display:flex;
    justify-content: center;
}

.main_text{
    padding: 15px;
    color: white;
    font-size:24px;
    text-align: center;
    text-shadow: 2px 2px black;
}

.main_text_description{
    padding: 15px;
    color: white;
    font-size:24px;
    text-align: center;
    text-shadow: 2px 2px black;
}

.main_text_description a:link {
	color: greenyellow
}

.main_text_description a:hover {
	color: red
}

.main_text_description a:visited {
	color: turquoise
}

.main_text_sponsor{
    padding: 15px;
    color: white;
    font-size:24px;
    text-align: center;
    text-shadow: 2px 2px black;
}

.main_text_sponsor a:link {
	color: red
}

.main_text_sponsor a:hover {
	color: greenyellow
}

.main_text_sponsor a:visited {
	color: blanchedalmond
}

.main_text_archive{
    padding: 15px;
    color: white;
    font-size:24px;
    text-align: center;
    text-shadow: 2px 2px black;
}

.main_text_archive a:link {
	color: greenyellow
}

.main_text_archive a:hover {
	color: red
}

.main_text_archive a:visited {
	color: turquoise
}

.text_header{
    padding: 5px;
    text-align: center;
    font-size:56px;
    color: white;
    text-decoration: underline white 5px;
    font-weight: bold;
    text-shadow: 2px 2px black;
}

.list_text{
    padding: 5px;
    color: white;
    font-size:22px;
    text-align: center;
    text-shadow: 2px 2px black;
}
.logo {
    text-align: center;
    position:absolute;
    top:10%;
}

.footer_info{
	padding-top: 15px;
    position: relative;
    bottom:20%;
    width:50%;
}

.footer_info a:link {
	color: greenyellow
}

.footer_info a:hover {
	color: red
}

.footer_info a:visited{
	color: turquoise
}

.footer_header{
    padding: 1px;
    text-align: center;
    font-size:32px;
    color: white;
    text-decoration: underline white 3px;
    font-weight: bold;
    text-shadow: 2px 2px black;
}

.footer_FEST{
    padding: 1px;
    text-align: center;
    font-size:34px;
    color: white;
    text-decoration: underline white 3px;
    font-weight: bold;
    text-shadow: 2px 2px black;
}

.row {
	display: flex;
}

.column {
	flex: 33.33%;
	padding: 5px;
}

.container {
	position: relative;
}

.text_block {
	font-size: 15px;
	position: absolute;
	bottom: 10px;
	right: 10px;
	background-color: white;
	color: black;
	padding-left: 2px;
	padding-right: 2px;
}
