* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #383B52;
    background: linear-gradient(200deg,rgba(56, 59, 82, 1) 0%, rgba(15, 19, 59, 1) 100%), radial-gradient(circle,rgba(255, 255, 255, 1) 20%, rgba(56, 59, 82, 1) 100%);
    background-blend-mode: multiply;
    font-family: "Merriweather", serif;
    color: white;
    text-align: center;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../assets/nashvillescoutstroop11-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    mix-blend-mode: multiply;
    opacity: 0.5;
    z-index: -1;
}

.logo {
    max-width: 320px;
    max-height: 320px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 1rem rgb(0 0 0));
}