body {
	display: flex;
    flex-direction: column;
    background-color: #577777;
    margin: 0;
    align-items: center;

}

header {
	text-align: center;


}


.square-hero {
    width: 20%;
	height: auto;
	border-radius: 28px
}

.portrait-image {
    width: 18vw;
    max-width: 220px;
    height: auto;
    border-radius: 14px;
}

.row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 12px;
}
.nav-container {
    display: flex;
    flex-direction: row;
    justify-content: center; 
    align-items: center;   
    gap: 40px;          
    margin-top: 20px;        
}
.nav {
    background-color: #555555;
    color: white;
    padding: 10px 20px;
	font-family: "Courier New";
	text-decoration: none;
}

.navbig {
    background-color: #555555;
    color: white;
    padding: 10px 20px;
    font-size: 40px;
    display: inline-block;
    margin: 10px 0;
	font-family: "Courier New";
	text-decoration: none;
}
.navsmall {
    background-color: #555555;
    color: white;
    padding: 10px 20px;
	font-size: 14px;
	text-decoration: none;
	
}
.div-highlight,
.div-highlight-big {

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    background-color: #5a5a5a;
    padding: 30px;
    font-size: 20px;
    color: white;
    margin: 10px 0;
    border-radius: 16px;
	
}
.div-highlight {
	width: 38.25vw;
	
	text-align: center;
	margin: 10px auto;
}
.div-highlight-big {
    width: 63.75vw;
	
}

footer {
    margin-top: 20px;
    text-align: center;
}

.donation-panel form {
    width: 100%;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    margin-bottom: 14px;
    text-align: left;
}

.form-row input {
    box-sizing: border-box;
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #7a7a7a;
}

#card-element {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #7a7a7a;
    background-color: white;
}

#donation-status {
    min-height: 24px;
    margin: 4px 0 8px;
    font-size: 16px;
}

@media (max-width: 600px) {
    .row {
        flex-direction: column;
    }
    .square-hero {
        max-width: 80%;
    }
    .navbig {
        font-size: 30px;
    }
}