
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');


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

body {
    background-color: #f4f4f4;
    color: #333;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    margin: 10px;
}

.container {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    width: 100%;
}

.content {
    flex: 1;
}

.nfors {
    max-width: 600px;
    margin: 0 auto;
}

.nfors img {
    width: 40%; 
    margin: 0 auto;
    height: auto; 
    display: block;
}


h1 {
    color: #333; 
    margin-top: 1.9rem;
    font-family: "Montserrat", sans-serif;
    font-size: 2.5rem;
    font-optical-sizing: auto;
    font-weight: 200;
    font-style: normal;
}

p {
    margin: 20px 50px;
    font-family: "Raleway", sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    font-style: normal;
    color: #111;
}


a {
    color: #a82906;
    text-decoration: underline;
}

.ipsdi-logo {
    padding-top: 20px;
}


footer {
    width: 100%;
    text-align: center;
}

footer p {
    color: #333;
    font-size: 0.9rem;
}

footer p a {
    text-decoration: underline;
    color: #333;
}


@media (max-width: 600px) {
    h1 {
        font-size: 2rem;
        font-weight: 300;
    }

    p {
        font-size: 1rem;
    }

    .container {
        padding: 15px;
    }

    footer {
        position: relative;
        padding-top: 20px;
        width: 100%;
        text-align: center;
    }

}