body {
    background-color: #95afb9;
    margin: 0;
    padding: 0;
    font-family: 'Josefin Sans', sans-serif;
}
header {
    display: flex;
    flex-direction: column;
    align-items: center;
}
h2 {
    font-size: 40px;
}
#information {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
}
h3 {
    color: white;
    text-decoration: underline;
}
.text p {
    line-height: 25px;
}

#image img {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    border-style: hidden;
    opacity: 1;
    transition: .1s ease;
    backface-visibility: hidden;
}
#image img:hover {
    cursor: pointer;
	transform: scale(1.5);
}
/* Show button */
.show button {
    width: 300px;
    height: 50px;
    margin: 20px;
    border: none;
    border-radius: 10px;
    background-color: rgb(230, 56, 25);
    font-size: 2rem;
    font-weight: 700;
    color: wheat;
}

/* Section*/

#container {
    display: flex;
    flex-wrap: wrap;
    width: 70%;
    margin: auto;
    justify-content: space-evenly;
    
}
.row {
    width: 25%;
    height: fit-content;
    text-align: center;
    margin: 10px;
    background-color: white;
    border-radius: 5px;
}
.row h4 {
    height: fit-content;
    margin-top: 10px;
    color: red;
    font-size: 1.2rem;
}
.row p {
    height: fit-content;
    color:rgb(7, 124, 13);
    font-style: italic;
    font-size: 0.9rem;
}
.row form {
    display: flex;
    justify-content: space-between;
}
.row form button {
    background-color: rgba(68, 189, 236, 0.383);
    border-radius: 10px;
    border: none;
    margin: 15px;
    width: 100px;
    height: 30px;
    font-weight: 700;
}
.row form button a {
    text-decoration: none;
}
.row form button:hover {
    background-color: yellow;
}