*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
:root{
    --prmary-bg-color: #58508d;
    --secondary-bg-color: #003f5c;
    --ternary-bg-color: #ffa600;
    --primary-font-color: #fff;
    --secondary-font-color: #bc5090;
}
@font-face {
    font-family: Orloj;
    src: url("./fonts/Orloj-Ea9eW.otf");
}
@font-face {
    font-family: Halalei;
    src: url("./fonts/Hanalei-Regular.ttf") format("ttf");
}
@font-face {
    font-family: Fuzzy-buble;
    src: url("./fonts/FuzzyBubbles-Bold.ttf") format("ttf");
}


.header{
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    width: 100%;
    height: fit-content;
    /* background-color: var(--secondary-bg-color); */
    /* color: var(--primary-font-color); */
    padding: 1.1rem 1rem;
    align-items: center;
}
body{
    background: linear-gradient(45deg, #da26db, #e2a50d);
    background-size: 400% 400%;
    -webkit-animation: AnimationName 15s ease infinite;
    -moz-animation: AnimationName 15s ease infinite;
    animation: AnimationName 15s ease infinite;
    display: grid;
    place-items: center;
    width: 100vw;
    height: 100vh;
    font-family: 'Courier New', Courier, monospace;

}
main{
    width: 80vw;
    height: 80vh;
    display: grid;
    place-items: center;
    grid-template-rows: 1fr 50px 4fr 80px;
}
.heading-container{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: fit-content;
}
.my-name{
    margin-top: 10px;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    margin-bottom: 2rem;
    letter-spacing: 1px;
    color:#003f5c;
    font-size: 1rem;
}
.my-name a{
    font-family: sans-serif;
    letter-spacing: 1.5px ;
    font-weight: bold;
    color:aliceblue;
}
.heading{
    font-size: 50px;
    font-family: 'Courier New', Courier, monospace;
    color: white;
}
.heading-img{
    margin-right: .6rem;
    width: 6vw;
}

.main-container{
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    background-color: rgb(168, 167, 167);
    border-radius: 3px;
    box-shadow: 5px 5px 5px rgba(160, 160, 160, 0.356);
    text-align: center;
}
.area{
    text-align: center; 
    margin: 2rem;
}
.area h3{
    margin-bottom: 1rem ;
    font-size: 25px;
    color: white;
}
textarea{
    width: 90%;
    height: 80%;
    border-radius: 3px;
    padding: 5px;
    outline: none;
    border: 1px solid black;
    background-color: rgb(34, 33, 33);
    color: rgb(153, 153, 153)
}
a{
    text-decoration: none;
}
.links{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 150px;
    margin: 2rem  0;
}

.img-github{
    width: 4.4em;
    height: 4.4rem;
    margin-right: -1rem;
}
.img-twitter{
    height: 3rem;
    width: 3rem;
}
@-webkit-keyframes AnimationName {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
@-moz-keyframes AnimationName {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
@keyframes AnimationName {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}





@media only screen and (max-width:1000px){
    .main-container{
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr;
    }
    .heading{
        font-size: 5vw;
    }
    .my-name{
        font-size: small;
    }
}
@media only screen and (max-width:400px){
    .heading{
        font-size: 20px;
    }
    .my-name{
        font-size: small;
    }
}