@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;600&display=swap');

html {
    font-family:"Raleway", Arial, Helvetica, sans-serif;
}

p {
    font-weight: 300;
}

body {
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    background-color: white;
    height: 100px;
    width: 100%;
    display: flex;
    align-items: flex-end;
    position: fixed;
    box-shadow: rgba(0, 0, 0, 0.1) 8px 8px 32px;
}

header .logo-container {
    width: 128px;
    margin: 0 64px;
}

header .logo {
    position: absolute;
    height: 128px;
    width: 128px;
    top: 40%;
    border-radius: 64px;
    background-image: url("../assets/NM.png");
    background-position: 50%;
    background-size: 150%;
    display: block;
}

header h1 {
    flex: 2;
    display: block;
    margin: 0;
}

header nav {
    flex: 1;
    min-width: 350px;
    
    padding-right: 64px;
}

header nav li {
    list-style-type: none;
    margin: 0 12px;
}

header nav ul {
    padding: 0px;
    display: flex;
    justify-content: flex-end;
    margin: 0;
}


header nav a {
    width: 120px;
    padding: 12px 0;
}

footer {
    display: flex;
    justify-content: space-between;
    
    background-color: #C68879;
    padding: 32px 64px;
    color: white;
}

.footer-column {
    flex: 1;
    max-width: 25%;
    border-top: white 1px solid;
}

footer a {
    color: white;
    display: block;
    margin: 16px 0;
}

footer .socials {
    display: flex;
    justify-content: space-around;
}

footer .socials a {
    font-size: 1.5em;
}


main {
    padding-top: 100px;
    flex: 1;
}

#banner {
    padding: 280px 0 80px 0;
    background: url('../assets/banner.jpg') no-repeat center top;
    background-size: 100% 320px;

}

.display-card {
    max-width: 50%;
    background-color: white;
    margin: 0 auto;
    box-shadow: rgba(0, 0, 0, 0.3) 8px 8px 32px;
    padding: 32px;
    display: flex;
    align-items: top;
}

.display-card img {
    object-fit: cover;
    object-position: top;
    max-width: 300px;
    aspect-ratio: 1.0;
    border-radius: 200px;
    box-shadow: rgba(0, 0, 0, 0.1) 8px 8px 16px;
}

.display-card-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    margin-left: 32px;
    flex: 1;
}

.display-card-info {
    background-color: #F5F5F5;
    flex: 1;
    padding: 16px;
    display: flex;
    flex-direction: column;
}
.display-card-info p {
    display: block;
    flex: 1;
}

.display-card .cta-button {
    padding: 16px;
}

.full-height {
    min-height:calc( 100vh - 100px);
}

.section-title {
    text-align: center;
    font-size: 3em;
    margin: 0;
    padding: 64px;
}

.cta-button {
    display: block;
    background-color: #C68879;
    color: white;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
}

.cta-button:hover {
    background-color: #984C20;
    transition: all 0.35s;
}