﻿/* Google Font - Montserrat*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Music&family=Ultra&display=swap');

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

/*body {
    background-image: url("images/NYC4.png");
    background-repeat: no-repeat; 
    background-size: cover; 
    background-position: center center; 
    background-attachment: fixed;
    font-family: 'Montserrat', san serif; 
} */

body {
    font-family: 'Montserrat', san serif;
    background-color: #002266+;
}

img {
    /* border-radius: 25px; /* Rounds all corners by 15 pixels */

    width: 100%;
    margin: auto;
}

.fixed-image {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 85%;
}

.main-container {
    display: flex;
    /* Other flexbox properties like justify-content, align-items, etc. */
    background-image: url('images/Banner3.png'); /* Specify your image path */
    background-repeat: no-repeat; /* Prevent image from repeating */
    background-size: auto; /* Adjust image size to cover the container */
    background-position: center center; /* Center the background image */
    /* Set a height for the container, otherwise, it might collapse if no content */
    min-height: 400px; /* Example height */
}

.main-container logo {
    color: #fff;
    width: 80%;
    border: 5px solid black;
}



