body {
    margin: 0;
    background: #f0f0f0;
    font-family: "Teko", 'Saira Condensed', "Teko", Helvetica, sans-serif;
    font-size: 1.3em;
    height: 100%;
}

html {
    height: 100%;
}

.container {
    position: relative;
    height: 100%;
    /*border: 2px solid green;*/
}

.text {
    display: grid;
    position: absolute;
    width: 70%;
    height: 60%;
    left: 25%;
    top: 120px;
    /*border: 1px solid red;*/
    text-align: justify;
}

.line1 {
    position: absolute;
    left: 15%;
    height: 90%; /*90%*/
    width: 0px;
    border: 1vw solid;
}

.header{
    color: black;
    font-size: 3em; /*14vw*/
    line-height: 15vw;
    text-align: left;
    /*border: 1px solid orange;*/
    margin-bottom: 0px;
    margin-top: 0px;
}

.description {
    clear: right;
}


.name {
    color:rgb(228, 110, 0);
}

.intro {
    background-color: #f0f0f0; /* Green */
    border: 4px solid rgb(0, 0, 0);
    color: rgb(0, 0, 0);
    padding: 16px 32px;
    height: 80%;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    top: 40px;
    font-family: "Teko", 'Saira Condensed', "Teko", Helvetica, sans-serif;
    font-size: 1.4em;
    transition-duration: 0.2s;
    cursor: pointer;
}
  
  
.intro:hover {
    background-color: black;
    color: rgb(228, 110, 0);
}

.intro:active {
    /*transform: scale(0.98, 0.98)*/
    color: black;
    background-color: rgb(228, 110, 0);
}


.line2 {
    position: absolute;
    top: 90%;
    left: 15%;
    width: 70%;
    height: 0px;
    border: 1vw solid;
}

.card1 {
    position: absolute;
    width: 65%;
    left: 10%;
    top: 100%;
    /*border: 1px solid red;*/
    text-align: justify;
}

.header2 {
    text-align: right;
}

.line3 {
    position: absolute;
    top: 90%;
    left: 85%;
    width: 0%;
    height: 80%;
    border: 1vw solid; 
}

.square {
    position: absolute;
    top: 170%;
    left: 72%;
    border: 1.8vw solid; 
    width: 10%;
    height: 10%;
}


.image {
    width: 100%;
    text-align: right;
    margin-top: 50px;
    margin-bottom: 50px;
    transition-duration: 0.1s;
    float: right;
}

.image:hover {
    transform: scale(1.01, 1.01);

}

@media only screen and (min-width: 650px) {
    /* For Tablets*/
    .header{
        color: red;
        line-height: 100px;
        font-size: 5em;
    }

    .intro {
        border: 5px solid rgb(0, 0, 0);
        width: 450px;
        font-size: 40px;
    }

    .description {
        font-size: 4vw;
    }
/*
    .line1, .line3, .line2 {
        border: 1vh solid black;
    }

    .line1 .line3 {
        border: 1vh;
    }*/
}

@media only screen and (min-width: 1000px) {
    .header{
        font-size: 5em;
        color: black;
    }

    .description {
        font-size: 2.5vw;
    }

    .text {
        height: 60%;
        /*top: 10%;*/
        width: 60%;
        font-size: 20px;
        line-height: 7vh;
    }

    .intro {
        border: 5px solid rgb(0, 0, 0);
        width: 400px;
        height: 100px;
        font-size: 40px;
    }

    .line1, .line3, .line2 {
        border: 0.5vh solid black;
    }

    .line1 .line3 {
        border: 0.5vh;
    }

    .line3 {
        height: 120%;
    }

}


ul {
    list-style: none;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
}
  
ul a {
    color: rgb(0, 0, 0);
}
  
ul li {
    padding: 5px;
    margin-left: 10px;
}
  
ul li:hover {
    transform: scale(1.1);
    transition: 0.3s;
}

#hamburger-icon {
    cursor: pointer;
    position: absolute;
    right: 0;
    margin-right: 4px;
    margin-top: 2px;
}
  
#hamburger-icon div {
    width: 35px;
    height: 6px;
    background-color: rgb(0, 0, 0);
    margin: 6px 0;
    transition: 0.4s;
}
  
.open .bar1 {
    -webkit-transform: rotate(90deg) translate(-6px, 6px) scale(4, 3);
    transform: rotate(90deg) translate(-6px, -6px) scale(3.5, 1.5);
}
  
.open .bar2 {
    opacity: 0;
}
  
.open .bar3 {
    -webkit-transform: translate(0px, -40px) scale(40, 1.5);
    transform: translate(-170px, -8px) scale(11, 1.5);
}

.open .mobile-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}
  
.mobile-menu {
    display: none;
    position: absolute;
    top: 50px;
    left: 0;
    right: 200px;
    height: calc(100vh - 50px);
    width: 100%;
}
  
.mobile-menu li {
    margin-bottom: 10px;
}