* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    
}

body {
    line-height: 1.6;
    background-color:  rgb(207, 193, 176);
    text-align: justify;

}

header {
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)),rgba(236, 223, 207, 0.6);
    padding:5px 0;
    max-height: 50px;
}
.logo img{
    margin-left: 20px;
    height:60px;
}
nav {
    display:flex;
}
nav ul {
    list-style: none;
    display: flex;
    font-size: 18px;
}
.hamburger{
    display:none;
    flex-direction:column;
    cursor:pointer;
    margin:10px 20px;
    gap:5px;
}

.hamburger span{
    width:25px;
    height:2px;
    background:black;
    display:block;
}
nav ul li {
    padding: 10px;
    margin-left: 10px;
}
nav ul li a {
    color: black;
    text-decoration: none;
    font-weight: bold;
}
nav ul li a:hover {
    color: gray;
}


.welcome {
    height: 44vh; 
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url("images/1.png"),
    url("images/3.png");
    background-position: 
    center,
    top left,
    top right;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: 
    cover,
    50% 50%,
    50% 50%;
    margin: 0vh 3vh 0vh 3vh ;
    color:  rgb(191, 179, 163);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}


.welcome h1 {
    font-size: clamp(46px,6vw,100px);
    margin-bottom: 1px;
    font-family: 'Times New Roman', Times, serif;
    font-weight: 100;
}

.welcome p {
    font-size: clamp(21px,2vw,300px);
    max-width: 600px;
    margin: auto;
    font-family: 'Times New Roman', Times, serif;
}

.pg1_container, .rules{
    font-size: clamp(10px,5vw,20px);
    align-items: center;
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)),rgba(236, 223, 207, 0.6);
    padding: 4vh 25vh 9vh 25vh;
    margin: 2vh 3vh 2vh 3vh ; 
}
.content {
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20vh;
}
.left {
    flex: 1;
}
.right {
    flex: 1;
    text-align: left;
}

.rules h2{
    text-align: center;
    font-size: 20px;
    padding-bottom: 20px;
}
.rules p a {
    color: black;
    text-decoration: underline;
    font-weight: bold;
    font-size: 20px;
}
.rules p a:hover {
    color:gray;
}


@media(max-width: 768px) {
    .logo img{
         margin-left:10px;
         height:50px;
    }
    .pg1_container, .rules{
        padding: 1vh 2vh 2vh 3vh;
    }
    .content, .rules {
        flex-direction: column;
        gap: 2vh;
    
    }
    .welcome {
        background-size: contain;
        height: 30vh;
    }
    .nav {
        display: flex;
        align-items: center;
        flex-direction: column;
        
    }
    nav ul {
        margin-top: 10px;
    }
    .hamburger{
        display:flex;
        margin-left: auto;
    }
    nav ul{
        display:none;
        flex-direction:column;
        background: rgb(236,223,207);
        position:absolute;
        top:50px;
        left:0;
        width:100%;
        padding:20px;
    }
    nav ul.active{
        display:flex;
    }

}


footer {
    text-align: center;
    padding-bottom: 20px;
}
footer p a {
    color: black;
    text-decoration: none;
    font-weight: bold;
    font-size: 20px;
}
footer p a:hover {
    color: gray;
}

/* photos */

/* Contact */
.contact_container {
    font-size: clamp(10px,5vw,20px);
    align-items: center;
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)),rgba(236, 223, 207, 0.6);
    padding: 20px 100px 90px 100px;
    margin: 2vh 3vh 2vh 3vh ;
    display: flex;
    gap: 100px; 
}

.box {
  padding: 20px;
}


.right_contact {
  text-align: center;
  align-items: center;
}
@media(max-width: 768px) {
    .contact_container {
    padding: 10px 20px 20px 30px;
    flex-direction: column;
    gap: 10px;
}   
    iframe {
        width: 300px;
    }
    .box {
        padding: 0px;
}
    .right_contact {
        text-align: left;
        align-items: center;
}

}