@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Niconne&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Aref+Ruqaa+Ink&display=swap');
*{
    margin: 0;    
    padding: 0;
    box-sizing: border-box;
    /* font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif ; */
    /* font-family: Arial, Helvetica, sans-serif; */
    font-family: 'Aref Ruqaa Ink', serif;
    font-weight: 100;

}

body,html{
    width: 100%;
    height: 100%;
    background: url('../images/2sided.jpg');
    background-size: cover;
    color: white;
    background-repeat: no-repeat;
}
.container{
    text-align: center;
    position: absolute;
    top: 50%;
    left: 25%;
    transform: translate(-50%,-50%);
    background-color: rgba(65,65,64,0.9);
    border: 2px solid white;
    width: 470px;
    height: 300px;
    color: white;
    padding: 45px;
    border-radius: 6px;
}
.container h1{
    font-weight: 600;
}

input[type="file"]{
    margin-left: 30px;
    margin-top: 40px;
    width: 86px;
    
}
input::file-selector-button {
    padding: 6px;
    border-radius: 2px;
    border: none;

}
input::file-selector-button:hover {
    cursor: pointer;
}
button{
    border: none;
    border-radius: 3px;
    margin-top: 40px;
    padding: 8px;
}
button:hover{
    cursor: pointer;
    background-color: #4BB543;
    color: white;
    box-shadow: 1px 1px 1px 1px black;
}
.container2{

    /* height: 70vh; */
    width: 400px;
    /* background: black; */
    position: absolute;
    top: 50%;
    right: 12%;
    transform: translate(0%,-50%);
    /* display: flex; */
    
}
.container2 h1{
    font-family: 'Niconne', cursive;
    font-weight: 100;
    /* color: #027a3e ; */
    /* #3da737; */
    text-align:center;
    /* background-color: rgba(65,65,64,0.9); */
    background: linear-gradient(to right, #59c413, #11ba1d,#1a922e, #031a02);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    font-size: 45px;
    /* border-radius: 3px; */
}

.shapes{
    position: relative;
    margin-top:16px;
    margin-left:30px;
}
.hexagon{
    /* transform: translate(-50%,-50%); */
    position: relative;
    width: 60px;
    height:70px;
    background-image: linear-gradient(to left, #027a3e , #3da737);
    clip-path: polygon(0% 25%, 0% 75%, 50% 100%, 100% 75%, 100% 25%, 50% 0%);
    z-index: 2;
}
.hexagon h4{
    position: relative;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 100;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.rectangle{
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translate(0%, -50%);
    width: 290px;
    height:45px;
    background-image: linear-gradient(to left, #027a3e , #3da737);
    z-index: 1;
}
.rectangle h4{
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 100;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}