.container {
margin: 0 auto; width: 70%;  }
.logo-container {
display: flex;
justify-content: center;
align-items: center;
}
.logo {
width: 40%;
margin: 30px 10%;
}
.partnership-message {
margin: 0 auto; width: 60%; 
font-weight: 200;
}
.logo img {
width: 100%;
}
.reminder {
background-color: #f5f5f5;
border: 1px solid #ccc;
border-radius: 5px;
padding: 20px;
text-align: center;
}
.message_header {
margin-bottom: 20px;
}
.message_subtext {
margin-bottom: 20px;
}
.reminder h2 {
font-size: 24px;
margin-bottom: 10px;
}
.reminder button {
background-color: #2D99CF;
border: none;
color: white;
padding: 10px 20px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 20px;
border-radius: 5px;
cursor: pointer;
}
.reminder button:hover {
background-color: #2D99CF;
border: none;
color: white;
padding: 10px 20px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 20px;
border-radius: 5px;
cursor: pointer;
}
.reminder-container {
display: flex; flex-wrap: wrap; }
.reminder-column {
flex: 1; padding: 10px; box-sizing: border-box; text-align: left;
}
.steps-container {
display: flex;
justify-content: center;
align-items: baseline;
flex-wrap: wrap;
}
.step {
width: 100%;
flex: 1; padding: 10px; box-sizing: border-box; text-align: left;
}
.step h3 {
color: #2D99CF;
}
@media screen and (min-width: 768px) {
.logo-mobile {
display: none;
}
}
@media screen and (max-width: 767px) {
.container {
width: 95%; }
.partnership-message {
width: 90%; 
}
.reminder-container {
flex-direction: column;
}
.steps-container {
flex-direction: column;
}
.logo-container {
display: none;
}
}