html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: white;
    background-color: #5F5F62;
}

.header {
    position: fixed;
    display: table;
    justify-content: space-between;
    z-index: 2;
    left: 0;
    top: 0;
    width: 100%;
    background-color: #2C2C30;
    text-align: left;
}

.header p {
    padding-left: 10%;
    color: white;
    font-size: 1rem;
    display: table-cell;
    vertical-align: middle;
}

.headerbtn {
    float: right;
}

.header button {
    padding: 16px;
    color: white;
    font-size: 1rem;
    background-color: transparent;
    border: none;
}

.hamburger {
    position: absolute;
    top: -4px;
    right: 0px;
    padding: 16px;
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: white;
}

.infoButton {
	background-color: #c6c6ca;
	border-radius: 10px;
	display: inline-block;
	cursor: pointer;
	color: black;
	font-size: 1.2rem;
	padding: 20px 20px;
	text-decoration: none;
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.block {
    width: 100%;
    padding-top: 80px;
    padding-bottom: 120px;
    padding-left: max(calc(25% - 200px), 10px);
    padding-right: max(calc(25% - 200px), 10px);
    background-color: #242427;
    background-repeat: no-repeat;
    background-size: cover;
}

.introVideo {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
}
  
.introVideo iframe {
    position: absolute;
    top: 0;
    left: 50%; 
    transform: translate(-50%, 0);
    width: 75%; 
    height: 75%;
}

.contact i {
    color: #00FF00;
    margin: 40px;
}

.link {
    color: black;
    text-decoration: none;
}

.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

/* Create four equal columns that sits next to each other */
.column {
    flex: 25%;
    max-width: 25%;
}

.column img {
    margin-top: 8px;
    vertical-align: middle;
    width: 100%;
    aspect-ratio: 1 / 1;
}

.cardcontainer {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    padding: 20px;
    margin-right: 28%;
}

.card {
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 15px;
    margin: 10px;
    width: 280px;
    color: black;
    background-color: white;
    opacity: 0.8;
    -webkit-box-shadow: -2px -1px 15px 7px rgba(0,0,0,0.5);
    -moz-box-shadow: -3px -2px 30px 14px rgba(0,0,0,0.425);
    box-shadow: -4px -3px 45px 21px rgba(0,0,0,0.35);
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
    .column {
        flex: 100%;
        max-width: 100%;
    }
    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(1) {
        -webkit-transform: translateY(8px) rotate(45deg);
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(3) {
        -webkit-transform: translateY(-8px) rotate(-45deg);
        transform: translateY(-8px) rotate(-45deg);
    }

    .header .links {
        display: none;
    }

    .links.active {
        display: block;
    }
    
    .cardcontainer {
        justify-content: center;
        margin-right: 0px;
    }
}

#gotopbtn{
    display: none;
    position: fixed;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: #27ae60;
    bottom: 20px;
    right: 20px;
    text-decoration: none;
    text-align: center;
    line-height: 50px;
    color: white;
    font-size: 22px;
}

.footer {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
    background-color: #101010;
}