body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
	background-color: black;
}

.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(f, f, f, 0.5);
    display: flex;
    /*justify-content: center;*/
    /*align-items: center;*/
    z-index: 1000;
}

.popup-content {
    background-color: black;
    padding: 20px;
    text-align: center;
	border-style: dashed;
	border-color: white;
    border-radius: 10px;
	color: white;
}

.header-image {
    width: 100%;
    display: block;
}

.logo {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
	width: 25%;
}

.container {
	
    display: flex;
	flex-direction: column;
	margin: 20px auto; /*This line centers the container */
	width: 90%;
	/*align: center;*/
	color: white;

}

.one-third-blue {
    flex: 1;
    background-color: #000000;
    background-image: url('2.png'); /* Path to your background image */
    background-size: auto 100%; /* Ensure the image covers the entire element */
    background-position: center; /* Center the image */
	background-repeat: no-repeat;
    border-right: 2px solid black;
	display: flex; /* Make the container a flexbox container */
    align-items: center; /* Center items vertically */
    justify-content: center; /* Center items horizontally */
    padding: 10px;
    border-left-radius: 10px; /* Rounded corners */
    box-sizing: border-box;
	
	
}

.h1-container {
	padding-top: 30px;
	padding-bottom: 30px;
	font-family:verdana;
	font-size:160%;
	text-align: center;
	font-weight: bold;
	/*color: white;*/
}

.h1-small {
	justify-content: center;
	padding-top: 25%;
	/*color:white;*/
	font-family:verdana;
	font-size:160%;
	text-align: center;
	font-weight: bold;
}
.h1-small-intro {
	justify-content: center;
	/*color:white;*/
	font-family:verdana;
	font-size:360%;
	text-align: center;
	font-weight: bold;
	display: flex;
	position: relative;
	top: 50%;
	/*transform: translateY(-50%);*/
}

.cont-text {
	/*color: white;*/
	padding-left: 30px;
	padding-right: 30px;
	text-align: center;
}

.two-thirds-blue {
    flex: 2;
    background-color: #3C6997;
    padding: 10px;
}

.one-third-blue, .two-thirds-blue {
    padding: 10px;
    border-radius: 10px; /* Rounded corners */
    box-sizing: border-box;
}

.one-third {
    flex: 1;
    background-color: #f0f0f0;
	border-right: 2px dashed white;
    padding: 10px;
}

.two-thirds {
    flex: 3;
    background-color: #d0d0d0;
    padding: 10px;
}

table {
	width: 50%;
	border-collapse: collapse;
	margin: auto; 
}

th, td {
border: 1px solid white;
text-align: center;
padding: 8px;
}

th {
background-color: lightgray;
}

.blue {
background-color: #3C6997;
}

.gray {
background-color: lightgray;
}

.orange {
	background-color: #FF914D;
}

.instagram-link {
	display: flex;
    margin-top: 20px; /* Add some spacing above the link */
    text-align: center; /* Center align the link */
	justify-content: center;
}

.instagram-link a {
    color: white; /* Link text color */
    text-decoration: none; /* Remove underline from the link */
    display: flex;
    align-items: center;
    justify-content: center;
}

.instagram-link a:hover {
    text-decoration: underline; /* Add underline on hover */
}

.instagram-logo {
    width: 100px; /* Adjust the size of the logo */
    height: 100px; /* Adjust the size of the logo */
    margin-right: 10px; /* Add some space between the logo and the text */
    vertical-align: middle;
}

@media (max-width: 900px) {
    .container {
        flex-direction: column;
    }

    .one-third-blue {
        border-right: none;
        border-bottom: 2px solid black;
    }
}