/* CSS Document */

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

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #273C4E;
    font-family: Arial, sans-serif;
}

.container {
    text-align: center;
}

.logo {
    max-width: 80%;
    height: auto;
}

h1 {
    font-size: 60px;
    margin-top: 20px;
    color: #DCB381;
}
