@font-face {
    font-family: 'CustomFont';
    src: url('custom-font.ttf') format('truetype');
}

body {
    margin: 0;
    padding: 0;
    font-family: 'CustomFont', sans-serif;
    #background: rgba(29, 61, 58);
    background: rgba(0, 0, 0);
    #background: url('background.jpg') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    #height: 100vh;
    text-align: center;
}

.container {
    #background: rgba(255, 255, 255, 0.7);
    padding: 20px;
    border-radius: 10px;
}

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

h1 {
    margin: 20px 0 10px;
    font-size: 2em;
}

p {
    font-size: 3.2em;
    color: #d8bd6c; /* Specific color for the paragraph */
}

@media (max-width: 600px) {
    .container {
        padding: 10px;
    }

    h1 {
        font-size: 1.5em;
    }

    p {
        font-size: 1em;
    }
}
