html {
    margin-bottom: 100px;
}

body {
    background-color: floralwhite;
    margin: 0;
}

.banner {
    display: flex;
    justify-content: center;
    background-image: url("/portrait.jpg");
    width: 100%;
    height: 500px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position-x: 43%;
}

.title {
    text-align: center;
    font-size: 4rem;
    color: white;
    align-self: flex-end;
    width: 1200px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 0.5rem;
}

.container {
    text-align: center;
    padding-top: 2rem;
    font-size: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.name {
    font-style: italic;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.matrimony {
    -webkit-animation: spin 2s infinite linear;
    -moz-animation: spin 2s infinite linear;
    -ms-animation: spin 2s infinite linear;
}

@-moz-keyframes spin {
    from { -moz-transform: rotate(0deg); }
    to { -moz-transform: rotate(360deg); }
}
@-webkit-keyframes spin {
    from { -webkit-transform: rotate(0deg); }
    to { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
    from {transform:rotate(0deg);}
    to {transform:rotate(360deg);}
}

@media (max-width: 767px) {
    html {
        font-size: 0.5rem;
    }
    
    .banner {
        height: 250px;
    }
}