*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

html,body{
    height: 100%;
    width: 100%;
    background-color:#0C1318;
    font-family:exo,sans-serif;
}

main{
    height:auto;
    width: 100%;
    overflow-x: hidden;
}

#cpage2{
    height:20vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2% 5%;
    border-bottom: solid #00bcd4 1px;
    border-top: solid #00bcd4 1px;
}

#cpg2-container{
    height:100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content:space-around;
    gap: 2vw;
}

#cpg2-container a{
    height:100%;
    cursor: pointer;
}
#cpg2-container i{
    height: 100%;
    width: fit-content;
    color: #00bcd4;
    font-size: 15vh;
}

#cpg2-container a:hover{
    transform: scale(1.1);
}

#cpg2-container img{
    height:100%;
}

#cpage1{
    height: auto;
    width:100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 2% 0;
    position: relative;
    overflow: hidden;
    transform: translateY(10vh);
}
#cpg1-img{
    position: absolute;
    left:-5%;
    bottom:-25%;
    height: 60vh;
    width: auto;
    z-index: 995;
    rotate: -60deg;
}

#cpage1 h1{
    font-size: 8vh;
    font-weight:900;
    color:#00bcd4;
    font-family:orbitron, sans-serif;
    gap:1vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

#contact-pg1{
    height: auto;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5%;
}

.contact-container{
    height: auto;
    width: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4%;
    background-color:#00bcd4;;
    border-radius: 50px;
    box-shadow: 0 8px 16px 0 rgba(0, 255, 255, 0.647);
    z-index: 996;
}


.contact-left{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2vh;
}

.contact-left-title h2{
    font-family: exo, sans-serif;
    font-weight: 900;
    font-size: xx-large;
    color:#1b2735;
    text-decoration: underline;
}


.contact-inputs{
    width: 400px;
    height: 50px;
    border: none;
    outline: none;
    font-weight: 900;
    color: #1b2735;
    border-radius: 50px;
    padding: 2%;
}

.contact-left textarea{
    height: 140px;
    width: 400px;
    padding: 2%;
    border-radius: 20px;
    border: none;
    outline: none;

}

.contact-inputs:focus{
    border: solid rgb(0, 13, 53) 2px;
    box-shadow: 0 8px 16px 0 rgba(0, 16, 87, 0.647);
}

.contact-left textarea:focus{
    border: solid rgb(0, 13, 53) 2px;
    box-shadow: 0 8px 16px 0 rgba(0, 16, 87, 0.647);
}

.contact-left button{
    width: 60%;
    display:flex;
    align-items: center;
    justify-content: center;
    padding: 2% 4%;
    font-size: 2vw;
    font-weight:900;
    gap: 10px;
    border: none;
    border-radius: 50px;
    background:#1b2735;
    cursor: pointer;
    height: 5vh;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.575);
    color: #00bcd4;
}

@media only screen and (max-width: 1200px) {
    #cpage2{
        height:fit-content;
    }
    
    #cpg2-container{
        height:100%;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content:space-around;
        gap: 2vw;
    }
    
    #cpg2-container a{
        height:6vh;
        object-fit: cover;
        object-position: center;
    }
    
    #cpg2-container img{
        height:6vh;
    }
    #cpage1{
        height:fit-content;
        margin-bottom: 5vh;
    }
    #cpage1 h1{
        font-size: 3vh;
    }
    #contact-pg1{
        height: fit-content;
    }
    .contact-container{
        height:fit-content;
        margin: 10%;
        width: 90vw;
    }

    .contact-inputs{
        width: 300px;
    }
    .contact-left textarea{
        width: 300px;
    }
    
    .contact-left button{
        width: 200px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: medium;
        font-weight: 900;
    }
    #cpg2-container{
        padding: 4% 0;
    }
    #cpg2-container i{
    font-size: 5vh;
}
}