* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #dbd8e3;
    margin: 0 auto;
}

header, footer {
    background-color:#5c5470;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    padding-bottom: 15px;
}
.flex {
    display:flex;
    justify-content: space-between;
    align-items: center;
}
nav{
    margin: 10 0px;
}
nav a{
    text-decoration: none;
    color:#2a2438;
    border-style: solid;
    border-width: thin;
    padding: 5px;
    background-color: #dbd8e3;
    display: inline;
}

nav a:hover{
    transform: scale(1.2);   
}

.hobbies{
    display:flex;
    justify-content: space-between;
}

.hobby{
    width: 40%;
    background-color: #beb5d3;
    margin:auto;
    padding: 10px;
    border: 2px gray; 
}

h1{
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    display:flex;
    justify-content: space-between;
    padding: 20px;
}
h2{
    display:flex;
    justify-content: center;
}

p{
    display:flex;
    justify-content: center;
}

img{
	display:block;
	margin-left: auto;
	margin-right: auto;
}

.form-container {
    display: flex;
    flex-direction: column;
    width: 300px;
    margin: 0 auto;
}

.form-container label,
.form-container input,
.form-container button {
    margin-bottom: 10px;
}

.gender-options{
  align-items: center;
  text-align: center;
  padding: 5px;
}

#readMore{
    background: linear-gradient(45deg, #2a2438, #5c5470);
    border: none;
    border-radius: 30px;
    padding: 10px 25px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

#readMore:hover {
    transform: scale(1.2);
  }

#readLess:hover {
    transform: scale(1.2);
  }

#readLess{
    background: linear-gradient(45deg, #2a2438, #5c5470);
    border: none;
    border-radius: 30px;
    padding: 10px 25px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}