body {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    padding: 0;
    margin: 0;
    color: #141414;
    height: 100vh;
}

h1,h2,h3,h4,h5,h6 {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    color: #1284b9;
}

.main {
    background: whitesmoke;
    background-image: url(https://anidocreatives.com/wp-content/uploads/2025/11/mks-index-bg.webp);
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: 200px;
    width: auto;
    margin: 0 auto;
    height: 100%;
    padding: 0;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.header {
    padding: 20px;
}

h1 {
    font-weight: 900;
    margin-bottom: 5px;
}
p {
    margin-top: 5px;
}

.logo {
    max-width: 280px;
}

.contact {
    margin: 10px auto;
}

.contact-details {
    display: flex;
    justify-content: center;
    padding: 5px;
    column-gap: 15px;
    font-size: 16px;
    font-weight: 600;
}

.contact-details i {
    padding: 10px;
    background: #f79e13;
    color: white;
    border-radius: 100px;
}


/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    .main {
        background-size: 120px;
    }
}