h1,
h2,
p {
    margin: 0;
}

html {
    font-size: 62.5%;
}

body {
    margin: 0;
    padding: 0;
    background-image: url(../images/bg.jpg);
    background-size: cover;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
}

#main {
    max-width: 110rem;
    width: 96%;
    margin-top: 5rem;
    position: relative;
}

#startScreen {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
}

#startWrapper {
    text-align: center;
}

.startText {
    font-family: "Passion One", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 2rem;
    margin-bottom: 3rem;
}
.actComDiv{
    text-align: center;
}

.animBox{
    width:150px;
    height: 150px;
    background-color: #6c3600;
    margin: auto;
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5);
    border:8px solid #f6be54;
}
.animBox img{
    max-width: 100%;
    max-height: 100%;
}
.startText H2, .actComDiv H2 {
    font-family: "Permanent Marker", cursive;
    font-weight: 700;
    font-style: normal;
    display: inline-block;
    background-image: linear-gradient(to bottom, #fea64e, #6c3600);
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    font-size: 6rem;
    margin-bottom: 2rem;
}

.startText p, .actComDiv p {
    font-family: Arial, Helvetica, sans-serif;
    width: 80%;
    margin: auto;
    line-height: 3rem;
      font-size: 2rem;
    font-weight: 400;
}

#startGame {
    font-family: "Passion One", sans-serif;
    font-weight: 400;
    width: 25rem;
    height: 7.8rem;
    background-image: url(../images/button.png);
    background-size: 100% auto;
    border: 0;
    background-color: transparent;
    color: #6c3600;
    text-transform: uppercase;
    font-size: 3rem;
    cursor: pointer;
}

#gameScreen {
    width: 100%;
    height: calc(100vh - 2rem);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#optDiv {
    display: flex;
    column-gap: 1rem;
}

#optDiv .coloumn1 {
    width: 50%;
    max-width: 529px;
    background-size: 100% 100%;
    height: auto;
    text-align: center;
    position: relative;
}

.coloumn1 h2 {
    text-transform: uppercase;
    font-family: "Permanent Marker", cursive;
    font-size: 25px;
    display: inline-block;
    background-image: linear-gradient(to bottom, #ffe8b4, #f5be54);
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
}

.lightEffect_correctOn {
    width: 76%;
    height: 5px;
    background-color: #13ca0a;
    margin: auto;
    -webkit-box-shadow: 0px 0px 105px 48px #13ca0a;
    -moz-box-shadow: 0px 0px 105px 48px #13ca0a;
    box-shadow: 0px 0px 105px 48px #13ca0a;
    animation: dimToDark .5s ease-out 1;
}

.lightEffect_wrongOn {
    width: 76%;
    height: 5px;
    background-color: #fd2727;
    margin: auto;
    -webkit-box-shadow: 0px 0px 105px 48px #fd2727;
    -moz-box-shadow: 0px 0px 105px 48px #fd2727;
    box-shadow: 0px 0px 105px 48px #fd2727;
    animation: dimToDark .5s ease-out 1;
}



.dropzone {
    width: fit-content;
    position: absolute;
}

.dropzone::before {
    content: "";
    position: absolute;
}
.mainwrapoptions {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    align-items: flex-end;
    padding-bottom: 20px;
}
.options img,
.dropzone img {
    pointer-events: none;
}

.addShadow {
    animation: shadowOnOff .3s ease-in infinite;
}

.coloumn1 {
    position: relative;
    min-height: 400px;
    overflow: hidden;
    cursor: pointer;
    padding: 20px;
    box-sizing: border-box;
}

.options {
    cursor: pointer;
    transition: all 0.3s ease;
    max-width: calc(100% - 40px); /* Account for column padding */
    box-sizing: border-box;
}

.options img {
    max-width: 100%;
    height: auto;
}

.light {
    width: 76%;
    height: 5px;
    margin: auto;
    transition: all 0.3s ease;
    position: absolute;
    bottom: 20px;
    left: 12%;
}

.lightEffect_correctOn {
    background-color: #13ca0a;
    -webkit-box-shadow: 0px 0px 105px 48px #13ca0a;
    -moz-box-shadow: 0px 0px 105px 48px #13ca0a;
    box-shadow: 0px 0px 105px 48px #13ca0a;
}

.lightEffect_wrongOn {
    background-color: #fd2727;
    -webkit-box-shadow: 0px 0px 105px 48px #fd2727;
    -moz-box-shadow: 0px 0px 105px 48px #fd2727;
    box-shadow: 0px 0px 105px 48px #fd2727;
}

@keyframes shadowOnOff {
    0% {
        filter: drop-shadow(-1px 0px 3px #f7dea8);
    }

    100% {
        filter: drop-shadow(-1px 0px 12px #f7dea8);
    }
}
@keyframes dimToDark {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.options {
    transition: none !important;
}

.options.correct {
    transition: all 0.3s ease !important;
    margin: 4px;
}

@media only screen and (max-width:940px) {
    #gameScreen {
        height: auto;
     
    }
    #optDiv {
        flex-wrap: wrap;
    }
    #optDiv .coloumn1 {
    width: 100%;
    max-width: 100%;
    position: relative;
    margin: 5px 0;
    }
}
@media only screen and (max-width:700px) {
    html {
        font-size: 50%;
    }

    .startText H2, .actComDiv H2 {
        font-size: 5rem;
    }

    .startText p , .actComDiv p{
        line-height: 2.5rem;
    }
    
}