@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

* {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    margin: 0;
    color: #212121;
}

body {
    background-color: #f5f5f5;
    padding: 0 16px;
}

a {
    text-decoration: none;
    color: rgb(230, 53, 103);
}

.footer .text {
    text-align: center;
}

.header {
    margin-top: 80px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    text-align: center;
}
.header .title {
    font-size: 1.3rem;
    font-weight: 500;
}

.header .subtitle {
    opacity: 0.8;
}

.header .logo {
    max-width: 100%;
    max-height: 100px;
    border: 2.5px solid #000;
}

.privacy {
    padding: 30px;
    max-width: 600px;
    margin: 60px auto;
    background-color: #ffffff;
    border-radius: 20px;
}

.privacy .title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 10px 0;
}

.privacy .subtitle {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 12px 0;
}

.contact {
    padding: 30px;
    max-width: 600px;
    margin: 30px auto;
    background-color: #ffffff;
    border-radius: 20px;
}

.contact .title {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 12px;
}

.page-404 {
    margin: 80px auto;
    text-align: center;
    display: block;
}

.page-404 .title {
    font-size: 3rem;
    font-weight: 600;
}

.page-404 .subtitle {
    font-size: 1.5rem;
    opacity: 0.6;
}

.page-404 .text {
    opacity: 0.6;
    margin-top: 20px;
}

.home {
    max-width: 600px;
    margin-top: 40px;
    margin-bottom: 100px;
    margin-left: auto;
    margin-right: auto;
}

.home .app {
    display: flex;
    column-gap: 20px;
    background-color: #ffffff;
    padding: 16px;
    border-radius: 40px;
}

.app .icon {
    max-width: 100%;
    height: 100px;
}

.app .title {
    font-size: 1.4rem;
    font-weight: 500;
}

.app .subtitle {
    opacity: 0.8;
    margin-top: 4px;
    margin-bottom: 12px;
}

@media (max-width: 600px) {
    .contact, .privacy {
        padding: 16px;
    }
    
    .home .app {
        display: grid;
        justify-items: center;
        text-align: center;
    }

    .home .app .icon {
        margin-bottom: 20px;
    }
}