body {
    padding: 0;
    margin: 0;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    display: flex;
    flex-direction: column;
}

.box1 {
    line-height: 150px;
    color: white;
    height: 260px;
    font-size: 160%;
    display: flex;
    background-color: seagreen;
    /* font-weight: bold; */
}

.left {
    display: flex;
    width: 75%;
}

.right {
    display: flex;
    width: 25%;
}

img {
    height: 250px;
    width: 250px;
    rotate: 180deg;
    transform: rotateX(180deg);
    box-shadow: -15px 15px 10px dimgray;
}

.box2 {
    display: felx;
    padding: 80px;
    background-color:  MintCream;
}

.box3 {
    background-color: seagreen;
    color: white;
    display: flex;
    flex-direction: row;
}

.right2 {
    width: 50%;
    height: 70px;
    display: flex;
    justify-content: center;
    line-height: 70px;
}

.left2 {
    width: 50%;
    height: 70px;
    align-items: center;
    display: flex;
    justify-content: center;
}

.button {
    background-color:  MintCream;
    color: seagreen;
    padding: 15px;
    text-decoration: none;
}


input {
    margin-bottom: 20px;
}