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

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #edf6f9;
    text-align: center;
    padding: 20px;
    background-image: url('/assets/pattern.png'); 
    background-repeat: no-repeat;
    background-position: bottom right; 
    background-size: 220px; 
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 600px;
    margin-bottom: 80px;
}

.logo {
    width: 180px;
    height: auto;
    margin-bottom: 20px;
    padding-right: 20px;
}

h1 {
    font-size: 48px;
    color: #141414;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -1px;
}

p {
    font-size: 16px;
    color: #006D77;
    margin-bottom: 20px;
    font-family: 'Schibsted Grotesk', sans-serif; 
    font-weight: 100;
}

.button {
    background-color: #ffddd2; 
    color: #141414;
    font-size: 16px;
    font-family: 'Schibsted Grotesk', sans-serif;
    padding: 12px 14px;
    border-radius: 8px; 
    border: none;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
}

.button:hover {
    background-color: #e29578; 
}


@media (max-width: 600px) {
    .button {
        width: 100%;
    }
}
