@import url('https://fonts.googleapis.com/css2?family=Kdam+Thmor+Pro&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Potta+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Comfortaa:wght@300&display=swap');
*{

    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
}

.mee{
    /* background-color: orangered; */
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    transition: 0.25s ease;
    z-index: 1;
}
.active{
    background-color: rgb(160, 212, 229);
    
}
.logo a{
    text-decoration: none;
    margin-left: 15px;
    color: black;
}
.logo a span{
    color: brown;
}
.menu ul li{
    list-style: none;
    display: inline-block;
    margin: 0px 30px;
    padding: 0px 5px;
}
.menu ul li a{
    color:rgb(231, 243, 239);
    font-family: 'Kdam Thmor Pro', sans-serif;
    text-decoration: none;
    text-transform: uppercase;
    transition: 0.25s ease-in;
}
.menu ul li a:hover{
    display: inline-block;
    background-color: white;
    color: black;
    border-radius: 6px;

}
.logo{
    font-size: xx-large;
    font-family: 'Potta One', cursive;
}
.container{
    background-image: linear-gradient(rgba(0,0,0,0.4),rgba(0,0,0,0.4)),url(/assets/uploads/background\ img.JPG);
    background-repeat: no-repeat;
    height: 100vh;
    background-size: cover;
    background-position: center;
}
.text{
    position: absolute;
    top: 37%;
    right: 78%;
    font-family: 'Anton', sans-serif;
    color: #470000;
    transform: translateX(13%) translateY(-31%);

}
.text1{
    font-size: 180%;
}
.text2{
    font-size: 200%;
}
.text3{
    font-size: 220%;
}
.text3 .auto{
    color: rgb(2 2 14);
}

.hamburger{
    position: absolute;
    right: 46px;
    top: 6px;
    display: none;
}
.about h1{
    text-align:center ;
    font-size: 30px;
    margin: 20px 0px;
    font-family: 'Kdam Thmor Pro', sans-serif;
    position: relative;
}
.about h1::before{
content: "";
position: absolute;
height: 5px;
width: 133px;
background-color: red;
bottom: 0;
}
.about h1::after{
    content: "Who i am";
    position: absolute;
    bottom: -10px;
    /* top: 0; */
    display: block;
    left: 48%;
    background: white;
    font-size: 47%;
    color: grey;
}
.about .content{
    display: flex;
    
    
}
.about .content .left{
    width: 30%;
    height: 50%;
    margin-left: 43px;
}

.about .content .left img{
    width: 290px;
}
.about .content .right p{
    font-size: larger;
}
.about .content .column{
    width: 38%;
    height: 71vh;
    margin: auto;
}

@media only screen and (max-width: 725px) {

    .hamburger{
        display: block;
        cursor: pointer;
        z-index: 2;
    }
    .mee{
        position: fixed;
        background-color: dimgrey;
        display: flex;
        flex-direction: column;
        top: 0;
        left:-100%;
        height: 100vh;
        width: 100%;
        transition: 0.25s ease-in;
    }
    .menu ul li{
        display: block;
        text-align:center;
        margin: 60px 0px;

    }
    .menu ul li a{
        display: inline-block;
    }
    .menu ul li a:hover{
color: green;    }
    .change{
        left:0;
    }
    .text1{
        font-size: 96%;
    margin: 4px 0px
    }
    .text2{
        font-size: 155%;
    }
    .text3{
        font-size: 160%;
    }
    .text{
        transform: translateY(-40%) translateX(19%);
    }
}


.contact .contents .left {
    float: left;
    /* width: 750px; */

}


.contact .contents form label{
    padding: 10px 20px;

    
}


.contact .contents .right{
    float: right;
}



/* test */

/* Style inputs */
input[type=text], select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
  }
  
  input[type=submit] {
    background-color: #04AA6D;
    color: white;
    padding: 12px 20px;
    border: none;
    cursor: pointer;
  }
  
  input[type=submit]:hover {
    background-color: #45a049;
  }
  
  /* Style the container/contact section */
  .container {
    border-radius: 5px;
    background-color: #f2f2f2;
    padding: 10px;
  }
  
  /* Create two columns that float next to eachother */
  .column {
    float: left;
    width: 50%;
    margin-top: 6px;
    padding: 20px;
  }
  
  /* Clear floats after the columns */
  .row:after {
    content: "";
    display: table;
    clear: both;
  }
  
  /* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
  @media screen and (max-width: 600px) {
    .column, input[type=submit] {
      width: 100%;
      margin-top: 0;
    }
  }